Skip to content

Commit

Permalink
Increase watchdog timeout from 30 to 90 seconds.
Browse files Browse the repository at this point in the history
30 seconds was way too aggressive, far too much risk of a false positive due to *handwaves at factors*.
  • Loading branch information
PJB3005 committed Apr 5, 2024
1 parent 72dbf03 commit ee83ab9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SS14.Watchdog/Configuration/InstanceConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ public sealed class InstanceConfiguration
/// <summary>
/// How long since the last ping before we consider the server "dead" and forcefully terminate it. In seconds.
/// </summary>
public int TimeoutSeconds { get; set; } = 30;
public int TimeoutSeconds { get; set; } = 90;

/// <summary>
/// Any additional environment variables for the server process.
/// </summary>
[UsedImplicitly]
public Dictionary<string, string> EnvironmentVariables { get; set; } = new();
}
}
}

0 comments on commit ee83ab9

Please sign in to comment.