Remove wait-for-ready log (#4956)

This commit is contained in:
Jack Amadeo
2025-10-02 13:43:45 -04:00
committed by GitHub
parent 0cf5b6ab10
commit 610967a55b
+1 -2
View File
@@ -34,8 +34,7 @@ export const checkServerStatus = async (client: Client): Promise<boolean> => {
try {
await status({ client, throwOnError: true });
return true;
} catch (error) {
log.error('failure to connect, will retry', error);
} catch {
if (attempt === maxAttempts) {
log.error(`Server failed to respond after ${(interval * maxAttempts) / 1000} seconds`);
}