I am using Topshelf to create a Windows Service. This service will attempt recovery the first 3 failures, but after that, it no longer work.
Inspecting the service in Services on the host reveals:
First Failure: Restart the Service
Second Failure: Restart the Service
Subsequent Failures: Restart the Service
Reset fail count after: 1 days
Restart service after: 2 minutes
The service recovery code looks like this:
f.EnableServiceRecovery(r =>
{
r.RestartService(2);
r.RestartService(5);
r.RestartService(5);
r.OnCrashOnly();
r.SetResetPeriod(1);
});
Inspecting the Event Log shows the following messages after failed recovery:
The MyService service terminated unexpectedly. It has done this 1 time(s). The following corrective action will be taken in 120000 milliseconds: Restart the service.
The MyService service terminated unexpectedly. It has done this 2 time(s). The following corrective action will be taken in 300000 milliseconds: Restart the service.
The MyService service terminated unexpectedly. It has done this 3 time(s). The following corrective action will be taken in 300000 milliseconds: Restart the service.
The MyService service terminated unexpectedly. It has done this 4 time(s).
As is evident from the above. The fourth time does not trigger recovery.
Is this a Windows error, a Topshelf issue, or is there something wrong in my configuration?