Skip to content

Commit

Permalink
Fixup the accuracy sec param
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Sep 24, 2021
1 parent bd43140 commit 70f495e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/consul-snapshots.nix
Expand Up @@ -129,7 +129,7 @@ let
OnCalendar = cfg.${job}.interval;
RandomizedDelaySec = cfg.${job}.randomizedDelaySec;
FixedRandomDelay = cfg.${job}.fixedRandomDelay;
AccuracySecs = "1us";
AccuracySec = "1us";
};
wantedBy = [ "timers.target" ];
};
Expand Down
2 changes: 1 addition & 1 deletion modules/nomad-snapshots.nix
Expand Up @@ -129,7 +129,7 @@ let
OnCalendar = cfg.${job}.interval;
RandomizedDelaySec = cfg.${job}.randomizedDelaySec;
FixedRandomDelay = cfg.${job}.fixedRandomDelay;
AccuracySecs = "1us";
AccuracySec = "1us";
};
wantedBy = [ "timers.target" ];
};
Expand Down
2 changes: 1 addition & 1 deletion modules/vault-snapshots.nix
Expand Up @@ -129,7 +129,7 @@ let
OnCalendar = cfg.${job}.interval;
RandomizedDelaySec = cfg.${job}.randomizedDelaySec;
FixedRandomDelay = cfg.${job}.fixedRandomDelay;
AccuracySecs = "1us";
AccuracySec = "1us";
};
wantedBy = [ "timers.target" ];
};
Expand Down

0 comments on commit 70f495e

Please sign in to comment.