Skip to content

Commit 41b3d92

Browse files
committed
tests: Reduce pool sizes
Without this the tests sometimes break because all available database connections are already taken.
1 parent eee300c commit 41b3d92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/util/test_app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,8 @@ fn simple_config() -> config::Server {
391391
// something is broken.
392392
url: String::from("invalid default url").into(),
393393
read_only_mode: false,
394-
pool_size: 5,
395-
async_pool_size: 5,
394+
pool_size: 3,
395+
async_pool_size: 2,
396396
min_idle: None,
397397
},
398398
replica: None,

0 commit comments

Comments
 (0)