fix: restart should not update config hash

This commit is contained in:
Andras Bacsai 2024-01-11 14:34:48 +01:00
parent cc1fb83c79
commit 3a391b69e8

View File

@ -203,7 +203,7 @@ public function handle(): void
dispatch(new ContainerStatusJob($this->server));
}
$this->next(ApplicationDeploymentStatus::FINISHED->value);
$this->application->isConfigurationChanged(true);
$this->application->isConfigurationChanged(false);
return;
} else if ($this->application->dockerfile) {
$this->deploy_simple_dockerfile();