fix(#2560): use from_mins for migration timeouts to satisfy clippy pedantic
This commit is contained in:
parent
40cf7f29de
commit
6bf839cfe4
1 changed files with 2 additions and 2 deletions
|
|
@ -27,8 +27,8 @@ const KILL_SWITCH: &str = "HIVE_SKIP_META_MIGRATION";
|
|||
/// stuck migration degrades to a logged warning instead of a hung boot.
|
||||
/// Git ops are quick; `nixos-container update` can legitimately trigger a
|
||||
/// nix build, so it gets a much longer budget.
|
||||
const GIT_TIMEOUT: Duration = Duration::from_secs(120);
|
||||
const CONTAINER_TIMEOUT: Duration = Duration::from_secs(600);
|
||||
const GIT_TIMEOUT: Duration = Duration::from_mins(2);
|
||||
const CONTAINER_TIMEOUT: Duration = Duration::from_mins(10);
|
||||
|
||||
/// Substring that identifies the *current* agent flake boilerplate.
|
||||
/// Bumped whenever the template changes so the startup migration
|
||||
|
|
|
|||
Loading…
Reference in a new issue