There was an error while loading. Please reload this page.
1 parent fad3418 commit 1ac40c9Copy full SHA for 1ac40c9
src/LaunchDarkly/Util.php
@@ -59,7 +59,7 @@ public static function newFeatureRequestEvent($key, $user, $variation, $value, $
59
public static function isHttpErrorRecoverable($status)
60
{
61
if ($status >= 400 && $status < 500) {
62
- return ($status == 408) || ($status == 429);
+ return ($status == 400) || ($status == 408) || ($status == 429);
63
}
64
return true;
65
0 commit comments