Skip to content

Commit

Permalink
tests/util/test_app: Increase default async_pool_size
Browse files Browse the repository at this point in the history
With the background worker ported to `deadpool` it requires one extra connection, so setting it to two connections by default isn't sufficient anymore.
  • Loading branch information
Turbo87 committed Apr 9, 2024
1 parent 1673c67 commit bf1b85c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/util/test_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ fn simple_config() -> config::Server {
url: String::from("invalid default url").into(),
read_only_mode: false,
pool_size: 3,
async_pool_size: 2,
async_pool_size: 3,
min_idle: None,
},
replica: None,
Expand Down

0 comments on commit bf1b85c

Please sign in to comment.