Hey,
is there any way or solution to fix this problem except restarting the server?
is there any way or solution to fix this problem except restarting the server?
https://msdn.microsoft.com/en-us/library/system.environment.tickcount(v=vs.110).aspxBecause the value of the TickCount property value is a 32-bit signed integer, if the system runs continuously, TickCount will increment from zero to Int32.MaxValue for approximately 24.9 days, then jump to Int32.MinValue, which is a negative number, then increment back to zero during the next 24.9 days. You can work around this issue by calling the Windows GetTickCount function, which resets to zero after approximately 49.7 days, or by calling the GetTickCount64 function.