chore: improve timeout for entering password when running goose ui from source (#5349)
This commit is contained in:
@@ -28,8 +28,9 @@ export const findAvailablePort = (): Promise<number> => {
|
|||||||
|
|
||||||
// Check if goosed server is ready by polling the status endpoint
|
// Check if goosed server is ready by polling the status endpoint
|
||||||
export const checkServerStatus = async (client: Client): Promise<boolean> => {
|
export const checkServerStatus = async (client: Client): Promise<boolean> => {
|
||||||
const interval = 100;
|
const interval = 100; // ms
|
||||||
const maxAttempts = 200;
|
const maxAttempts = 1200; // 120s
|
||||||
|
|
||||||
for (let attempt = 1; attempt <= maxAttempts; attempt++) {
|
for (let attempt = 1; attempt <= maxAttempts; attempt++) {
|
||||||
try {
|
try {
|
||||||
await status({ client, throwOnError: true });
|
await status({ client, throwOnError: true });
|
||||||
|
|||||||
Reference in New Issue
Block a user