Start servers by default

This commit is contained in:
Lance Pioch 2024-06-17 10:47:43 -04:00
parent ff261f9c99
commit 9d9720a5a2

View File

@ -74,7 +74,7 @@ class ServerCreationService
try {
$this->daemonServerRepository->setServer($server)->create(
Arr::get($data, 'start_on_completion', false) ?? false
Arr::get($data, 'start_on_completion', true) ?? true,
);
} catch (DaemonConnectionException $exception) {
$this->serverDeletionService->withForce()->handle($server);