fix: send unreachable/revived notifications

This commit is contained in:
Andras Bacsai 2023-10-11 13:52:46 +02:00
parent 4fd83dc727
commit aa7bc40f85

View File

@ -53,7 +53,7 @@ public function handle()
if ($serverUptimeCheckNumber >= $serverUptimeCheckNumberMax) {
if ($this->server->unreachable_email_sent === false) {
ray('Server unreachable, sending notification...');
// $this->server->team->notify(new Unreachable($this->server));
$this->server->team->notify(new Unreachable($this->server));
$this->server->update(['unreachable_email_sent' => true]);
}
$this->server->settings()->update([
@ -85,7 +85,7 @@ public function handle()
if (data_get($this->server, 'unreachable_email_sent') === true) {
ray('Server is reachable again, sending notification...');
// $this->server->team->notify(new Revived($this->server));
$this->server->team->notify(new Revived($this->server));
$this->server->update(['unreachable_email_sent' => false]);
}
if (