Changed to check every 10 mins
This commit is contained in:
parent
e646122f55
commit
66f854fe1d
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue