We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fad3418 + 1ac40c9 commit 0a566beCopy full SHA for 0a566be
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