Commit 66f854fe authored by Matt Lowe's avatar Matt Lowe
Browse files

Changed to check every 10 mins

parent e646122f
...@@ -485,7 +485,7 @@ void Servatrice::shutdownTimeout() ...@@ -485,7 +485,7 @@ void Servatrice::shutdownTimeout()
{ {
--shutdownMinutes; --shutdownMinutes;
if (shutdownMinutes <= 5 || isFirstShutdownMessage || shutdownMinutes % 20 == 0) { if (shutdownMinutes <= 5 || isFirstShutdownMessage || shutdownMinutes % 10 == 0) {
isFirstShutdownMessage = false; isFirstShutdownMessage = false;
SessionEvent *se; SessionEvent *se;
if (shutdownMinutes) { if (shutdownMinutes) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment