Skip to content

Commit

Permalink
feat(registry-mock): bump max_retries
Browse files Browse the repository at this point in the history
  • Loading branch information
KSXGitHub committed Nov 17, 2023
1 parent 45a712b commit 5add8a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/registry-mock/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async fn launch() {
port: pick_unused_port().expect("pick an unused port"),
stdout: Some(&stdout),
stderr: Some(&stderr),
max_retries: 5,
max_retries: 20,
retry_delay: Duration::from_millis(500),
};
let saved_info = PreparedRegistryInfo::launch(options).await;
Expand Down
2 changes: 1 addition & 1 deletion tasks/registry-mock/src/mock_instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl AutoMockInstance {
port: pick_unused_port().expect("pick an unused port"),
stdout: None,
stderr: None,
max_retries: 5,
max_retries: 20,
retry_delay: Duration::from_millis(500),
}
});
Expand Down

0 comments on commit 5add8a1

Please sign in to comment.