Skip to content

Commit

Permalink
storage_controller: increase shard scan timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgrinaker committed Dec 4, 2024
1 parent 68205c4 commit e7e00f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage_controller/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ impl Service {
node_list_futs.push({
async move {
tracing::info!("Scanning shards on node {node}...");
let timeout = Duration::from_secs(1);
let timeout = Duration::from_secs(5);
let response = node
.with_client_retries(
|client| async move { client.list_location_config().await },
Expand Down

0 comments on commit e7e00f8

Please sign in to comment.