Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Dec 2, 2024
1 parent bcb5165 commit 9e2c1c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ mod tests {
listen_address: "127.0.0.1".to_string(),
port,
max_connections: 1024,
max_subscriptions_per_connection: 1024,
max_batch_size,
request_timeout_seconds: request_timeout_seconds.unwrap_or(10),
http_methods: Vec::new(),
Expand Down
1 change: 1 addition & 0 deletions src/tests/merge_subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ async fn merge_subscription_works() {
listen_address: "0.0.0.0".to_string(),
port: 0,
max_connections: 10,
max_subscriptions_per_connection: 1024,
max_batch_size: None,
request_timeout_seconds: 120,
http_methods: Vec::new(),
Expand Down
1 change: 1 addition & 0 deletions src/tests/upstream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ async fn upstream_error_propagate() {
listen_address: "0.0.0.0".to_string(),
port: 0,
max_connections: 10,
max_subscriptions_per_connection: 1024,
max_batch_size: None,
request_timeout_seconds: 120,
http_methods: Vec::new(),
Expand Down

0 comments on commit 9e2c1c1

Please sign in to comment.