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 82a5b4c commit 005bd55Copy full SHA for 005bd55
app/Jobs/DockerCleanupJob.php
@@ -40,7 +40,8 @@ public function handle(): void
40
if (! $this->server->isFunctional()) {
41
return;
42
}
43
- if ($this->server->is_force_cleanup_enabled) {
+ if ($this->server->settings->is_force_cleanup_enabled) {
44
+ Log::info('DockerCleanupJob force cleanup on '.$this->server->name);
45
CleanupDocker::run(server: $this->server, force: true);
46
47
0 commit comments