You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Critical executor errors that indicate the machine is unreachable
458
+
if (in_array($errNo, [
459
+
CURLE_COULDNT_RESOLVE_HOST, // DNS failure - the executor's hostname cannot be resolved, indicating either the executor is completely offline or DNS issues
460
+
CURLE_COULDNT_CONNECT, // TCP connection failure - the executor process is not accepting connections, suggesting it's down or blocked by firewall
461
+
CURLE_OPERATION_TIMEDOUT// Connection timeout - the executor is not responding at all, indicating it's frozen or network is completely blocked
0 commit comments