Skip to content

Commit

Permalink
fix(daemon): set gasket policy tick_timeout none
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobressan committed Sep 20, 2023
1 parent 1b23688 commit fd7bb3f
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 fd7bb3f

Please sign in to comment.