We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05defbc commit 36a5099Copy full SHA for 36a5099
src/AsyncTask.php
@@ -311,6 +311,7 @@ private function hasTimedOut(): bool
311
$tempOut = exec("ps -p $selfPID -o etimes=");
312
// this must exist (we are still running!), otherwise it indicates the kernel is broken and we can go grab a chicken dinner instead
313
$timeElapsed = (int) $tempOut;
314
+ unset($tempOut);
315
return $timeElapsed >= $this->timeLimit;
316
}
317
0 commit comments