From 2db122c85168f3d677c22f976874086d0c4b8ddf Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Wed, 5 Nov 2025 09:10:15 +0100 Subject: [PATCH] fix: remove debugging output from StartPostgresql command handling --- app/Actions/Database/StartPostgresql.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Actions/Database/StartPostgresql.php b/app/Actions/Database/StartPostgresql.php index 925020af8..1ae0d56a0 100644 --- a/app/Actions/Database/StartPostgresql.php +++ b/app/Actions/Database/StartPostgresql.php @@ -231,8 +231,6 @@ public function handle(StandalonePostgresql $database) } $this->commands[] = "echo 'Database started.'"; - ray($this->commands); - return remote_process($this->commands, $database->destination->server, callEventOnFinish: 'DatabaseStatusChanged'); }