Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit a0da4f4

Browse files
committed
Fix emergency kill
1 parent d3eb6a1 commit a0da4f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/core/src/pydio/Core/Controller/ShutdownScheduler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ public function callRegisteredShutdown()
122122
Logger::error(__CLASS__, __FUNCTION__, array("context" => "Applying hook " . get_class($callback[0]) . "::" . $callback[1], "message" => $e->getMessage()));
123123
}
124124
$index++;
125-
if($index > 200) {
126-
Logger::error(__CLASS__, __FUNCTION__, "Breaking ShutdownScheduler loop, seems too big (200)");
125+
if($index > 100000) {
126+
Logger::error(__CLASS__, __FUNCTION__, "Breaking ShutdownScheduler loop, seems too big (100000)");
127127
break;
128128
}
129129
}

0 commit comments

Comments
 (0)