From b2109b47e0f99cd15a63897f00d80dbb0ff89c49 Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Tue, 22 Oct 2024 17:55:17 +0100 Subject: [PATCH] fix: args --- app/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/http.php b/app/http.php index f3d9f44..d46dde6 100644 --- a/app/http.php +++ b/app/http.php @@ -1236,7 +1236,7 @@ function (string $runtimeId, ?string $payload, string $path, string $method, mix throw new Exception('Function timed out during cold start.', 400); } - $status = Console::execute('nc -z ' . $hostname . ' 3000', $output, $errNo); + $status = Console::execute('nc -z ' . $hostname . ' 3000', '', ''); if ($status === 0) { break; }