Skip to content

Commit 55779df

Browse files
authored
bump RESET_TIMEOUT because Sidecar SPs can take a while (#8473)
1 parent 31c8803 commit 55779df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nexus/mgs-updates/src/driver_update.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ const PROGRESS_POLL_INTERVAL: Duration = Duration::from_secs(10);
4444
pub const DEFAULT_RETRY_TIMEOUT: Duration = Duration::from_secs(60);
4545

4646
/// How long to wait after resetting the device before expecting it to come up
47-
const RESET_TIMEOUT: Duration = Duration::from_secs(60);
47+
// 120 seconds is chosen as a generous overestimate, based on reports that
48+
// Sidecar SPs have been observed to take as many as 30 seconds to reset.
49+
const RESET_TIMEOUT: Duration = Duration::from_secs(120);
4850

4951
/// Parameters describing a request to update one SP-managed component
5052
///

0 commit comments

Comments
 (0)