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
EE::warning( 'Failed to send callback to EasyEngine Dashboard: ' . $error );
1228
1233
} elseif ( $is_5xx_error ) {
1234
+
// 5xx error after all retries exhausted
1229
1235
EE::warning( sprintf(
1230
1236
'EasyEngine Dashboard callback failed after %d retries with HTTP %d. Response: %s',
1231
1237
$max_retries,
1232
1238
$http_code,
1233
-
$response
1239
+
$response_text
1234
1240
) );
1241
+
} elseif ( $http_code === 0 ) {
1242
+
// No HTTP response received (may indicate network/cURL issue without explicit error)
1243
+
EE::warning( 'EasyEngine Dashboard callback failed: No HTTP response received. This may indicate a network or cURL error. Response: ' . $response_text );
1235
1244
} else {
1236
-
// 4xx or other error codes that shouldn't be retried
0 commit comments