dynamic port selection for temporal (#2865)

This commit is contained in:
Max Novich
2025-06-11 20:25:47 -07:00
committed by GitHub
parent 9432f3c7b5
commit dd5f5eb03d
4 changed files with 535 additions and 98 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export const findAvailablePort = (): Promise<number> => {
// Check if goosed server is ready by polling the status endpoint
const checkServerStatus = async (
port: number,
maxAttempts: number = 60,
maxAttempts: number = 80,
interval: number = 100
): Promise<boolean> => {
const statusUrl = `http://127.0.0.1:${port}/status`;