dont log timeouts on stopped threads

httptests
UbitUmarov 2017-05-23 06:38:19 +01:00
parent 3c97bb1e6f
commit 07e614a32c
1 changed files with 2 additions and 1 deletions

View File

@ -504,7 +504,8 @@ namespace OpenSim
private void WatchdogTimeoutHandler(Watchdog.ThreadWatchdogInfo twi)
{
int now = Environment.TickCount & Int32.MaxValue;
if(twi.Thread.ThreadState == System.Threading.ThreadState.Stopped)
return;
m_log.ErrorFormat(
"[WATCHDOG]: Timeout detected for thread \"{0}\". ThreadState={1}. Last tick was {2}ms ago. {3}",
twi.Thread.Name,