More time for goosed (#5746)

This commit is contained in:
Jack Amadeo
2025-11-17 09:36:11 -05:00
committed by GitHub
parent 8185d3a706
commit 0782874a92
+1 -1
View File
@@ -27,7 +27,7 @@ export const findAvailablePort = (): Promise<number> => {
// Check if goosed server is ready by polling the status endpoint
export const checkServerStatus = async (client: Client, errorLog: string[]): Promise<boolean> => {
const interval = 100; // ms
const maxAttempts = 30; // 3s
const maxAttempts = 100; // 10s
const fatal = (line: string) => {
const trimmed = line.trim().toLowerCase();