From 25a32663017ae995e74c26fdd233454366581f9c Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 17 Apr 2025 22:25:36 +1200 Subject: [PATCH] Remove dump --- app/http.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/http.php b/app/http.php index 8ee65dccf6..b2af26a631 100644 --- a/app/http.php +++ b/app/http.php @@ -171,8 +171,6 @@ function createDatabase(App $app, string $resourceKey, string $dbName, array $co $database = is_callable($resource) ? $resource() : $resource; break; // exit loop on success } catch (\Exception $e) { - \var_dump($e); - exit; Console::warning(" └── Database not ready. Retrying connection ({$attempts})..."); if ($attempts >= $max) { throw new \Exception(' └── Failed to connect to database: ' . $e->getMessage());