Skip to content

Commit

Permalink
[test-util] Embiggen SP-sim discovery timeout (#6879)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw authored Oct 17, 2024
1 parent 8d899ca commit e577765
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gateway-test-utils/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,11 @@ pub async fn test_setup_with_config(
future::ready(result)
},
&Duration::from_millis(100),
&Duration::from_secs(1),
// This seems like a pretty long time to wait for MGS to discover the
// simulated SPs, but we've seen tests fail due to timeouts here in the
// past, so we may as well be generous:
// https://github.com/oxidecomputer/omicron/issues/6877
&Duration::from_secs(30),
)
.await
.unwrap();
Expand Down

0 comments on commit e577765

Please sign in to comment.