diff --git a/ui/desktop/src/goosed.ts b/ui/desktop/src/goosed.ts index e6459cc68aa4..5481fc8d5cba 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();