Exit upon failure. Let systemd/supervisor handle it

This commit is contained in:
Rob Vella 2020-08-02 00:54:58 -07:00
parent 6063b2421b
commit 14a29273a2
1 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,8 @@ class Stream
if (!$this->stream) {
$this->appendToStreamOutput($this->timeFormatted() . " rpt0000 KEY [via 0000] [WINSystem Allmon Connection Failed]");
sleep(120);
$this->streamLoop();
// Systemd / Supervisor will restart us anyway
exit;
}
while (!feof($this->stream)) {
@ -117,6 +118,9 @@ class Stream
}
}
}
// Redundant
exit;
}
/**