Skip to content

Commit

Permalink
chore(bors): merge pull request #895
Browse files Browse the repository at this point in the history
895: test: adjust grpc timeout r=tiagolobocastro a=tiagolobocastro

On very slow backend, it was seen that this timeout may not be enough.

Co-authored-by: Tiago Castro <[email protected]>
  • Loading branch information
mayastor-bors and tiagolobocastro committed Dec 4, 2024
2 parents 02aa5aa + 6a3b341 commit 4d13dbf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion control-plane/agents/src/bin/core/tests/volume/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ async fn snapshot_timeout() {
.with_min_req_timeout(None)
}
let req_timeout = Duration::from_millis(800);
let grpc_timeout = Duration::from_millis(250);
let grpc_timeout = Duration::from_millis(500);

let cluster = ClusterBuilder::builder()
.with_rest(true)
Expand Down
2 changes: 1 addition & 1 deletion scripts/rust/linter.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

cargo fmt -- --version
cargo fmt --all
cargo fmt --all -- --config imports_granularity=Crate

cargo clippy -- --version
cargo clippy --all --all-targets $1 -- -D warnings
2 changes: 1 addition & 1 deletion utils/dependencies

0 comments on commit 4d13dbf

Please sign in to comment.