Skip to content

Commit

Permalink
chore: Increase default io timeout for behavior changes (#15493)
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo authored May 13, 2024
1 parent 1a469e5 commit 11b8c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/storage/src/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub fn build_operator<B: Builder>(builder: B) -> Result<Operator> {
let retry_io_timeout = env::var("_DATABEND_INTERNAL_RETRY_IO_TIMEOUT")
.ok()
.and_then(|v| v.parse::<u64>().ok())
.unwrap_or(10);
.unwrap_or(60);

let mut timeout_layer = TimeoutLayer::new();

Expand Down

0 comments on commit 11b8c30

Please sign in to comment.