Fix log drain container notification bug

This commit is contained in:
Andras Bacsai 2023-11-17 21:24:22 +01:00
parent 689480003a
commit 8a9ee84925

View File

@ -73,6 +73,11 @@ public function handle(): void
$this->server->team->notify(new ContainerStopped('Coolify Log Drainer', $this->server, null));
$this->server->update(['log_drain_notification_sent' => true]);
}
} else {
if ($this->server->log_drain_notification_sent) {
$this->server->team->notify(new ContainerRestarted('Coolify Log Drainer', $this->server));
$this->server->update(['log_drain_notification_sent' => false]);
}
}
} catch (\Throwable $e) {
send_internal_notification("CheckLogDrainContainerJob failed on ({$this->server->id}) with: " . $e->getMessage());