Skip to content

Commit

Permalink
tmp fix: continue sanchonet faucet restarts
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Apr 29, 2024
1 parent abcd5c3 commit a3bbb0f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions flake/colmena.nix
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,12 @@ in

faucetTmpFix = {
systemd.services.cardano-faucet = {
startLimitBurst = mkForce 6;
startLimitIntervalSec = mkForce 3600;
# startLimitBurst = mkForce 6;
# startLimitIntervalSec = mkForce 3600;

# Temporarily continue restarts indefinitely
startLimitBurst = mkForce 0;
startLimitIntervalSec = mkForce 0;
serviceConfig.RestartSec = mkForce "600s";
};
};
Expand Down

0 comments on commit a3bbb0f

Please sign in to comment.