From 0782874a92388e6add8ddefbb4d4240bef892eca Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Mon, 17 Nov 2025 09:36:11 -0500 Subject: [PATCH] More time for goosed (#5746) --- ui/desktop/src/goosed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/goosed.ts b/ui/desktop/src/goosed.ts index e6459cc6..5481fc8d 100644 --- a/ui/desktop/src/goosed.ts +++ b/ui/desktop/src/goosed.ts @@ -27,7 +27,7 @@ export const findAvailablePort = (): Promise => { // Check if goosed server is ready by polling the status endpoint export const checkServerStatus = async (client: Client, errorLog: string[]): Promise => { const interval = 100; // ms - const maxAttempts = 30; // 3s + const maxAttempts = 100; // 10s const fatal = (line: string) => { const trimmed = line.trim().toLowerCase();