Skip to content

Commit

Permalink
add timeout value with sockets time out (#2460)
Browse files Browse the repository at this point in the history
To help debug hourly failure issues associated with #2461.
  • Loading branch information
sehz committed Jul 3, 2022
1 parent 749df76 commit 7b7d274
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/fluvio-socket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fluvio-socket"
version = "0.11.5"
version = "0.11.6"
edition = "2021"
authors = ["Fluvio Contributors <[email protected]>"]
description = "Provide TCP socket wrapper for fluvio protocol"
Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-socket/src/multiplexing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl MultiplexerSocket {

Err(IoError::new(
ErrorKind::TimedOut,
format!("Timed out waiting for response. API_KEY={}, CorrelationId={}", R::API_KEY, correlation_id),
format!("Timed out: {} secs waiting for response. API_KEY={}, CorrelationId={}", *MAX_WAIT_TIME,R::API_KEY, correlation_id),
).into())
},

Expand Down

0 comments on commit 7b7d274

Please sign in to comment.