Skip to content

Commit 933576a

Browse files
authored
tests: Reduce pool sizes (#8381)
Without this the tests sometimes break because all available database connections are already taken.
1 parent 0e080a6 commit 933576a

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
@@ -401,8 +401,8 @@ fn simple_config() -> config::Server {
401401
// something is broken.
402402
url: String::from("invalid default url").into(),
403403
read_only_mode: false,
404-
pool_size: 5,
405-
async_pool_size: 5,
404+
pool_size: 3,
405+
async_pool_size: 2,
406406
min_idle: None,
407407
},
408408
replica: None,

0 commit comments

Comments
 (0)