Skip to content

Commit

Permalink
tests: reduce the memory size for memcached to see if the tests runs
Browse files Browse the repository at this point in the history
Signed-off-by: Reto Achermann <achreto@gmail.com>
  • Loading branch information
achreto committed Nov 1, 2023
1 parent aec1c7a commit b1fbc29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/testutils/src/configs.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright © 2021 VMware, Inc. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

pub const MEMCACHED_MEM_SIZE_MB: usize = 4 * 1024;
pub const MEMCACHED_NUM_QUERIES: usize = 1_000_000;
pub const MEMCACHED_MEM_SIZE_MB: usize = 1 * 1024;
pub const MEMCACHED_NUM_QUERIES: usize = 500_000;

0 comments on commit b1fbc29

Please sign in to comment.