We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe0d9a commit 344b31cCopy full SHA for 344b31c
src/ServiceControl/Infrastructure/Settings/Settings.cs
@@ -182,8 +182,9 @@ public TimeSpan HeartbeatGracePeriod
182
public bool DisableHealthChecks { get; set; }
183
184
// The default value is set to the maximum allowed time by the most restrictive
185
- // hosting platform, which Docker Linux containers.
186
- public TimeSpan ShutdownTimeout { get; set; } = TimeSpan.FromSeconds(10);
+ // hosting platform, which Docker Linux containers minus a few seconds
+ // to actually allow for cancellation and logging to take place
187
+ public TimeSpan ShutdownTimeout { get; set; } = TimeSpan.FromSeconds(5);
188
189
public string GetConnectionString()
190
{
0 commit comments