Skip to content

Commit

Permalink
fix: remove hardcoded stage tick timeout (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobressan authored Sep 20, 2023
1 parent aba91d0 commit ed54b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/oura/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ fn define_gasket_policy(config: Option<&gasket::retries::Policy>) -> gasket::run
};

gasket::runtime::Policy {
tick_timeout: std::time::Duration::from_secs(120).into(),
tick_timeout: None,
bootstrap_retry: config.cloned().unwrap_or(default_policy.clone()),
work_retry: config.cloned().unwrap_or(default_policy.clone()),
teardown_retry: config.cloned().unwrap_or(default_policy.clone()),
Expand Down

0 comments on commit ed54b32

Please sign in to comment.