packager: GlobalTransformCache: fix bug in retry logic

Reviewed By: bestander

Differential Revision: D4850644

fbshipit-source-id: ede9991eaac3c7bfd045f2a9c3e9d0b10d45af0f
This commit is contained in:
Jean Lauliac
2017-04-07 05:04:23 -07:00
committed by Facebook Github Bot
parent 1b52c2a7ab
commit 568fb403bf
+1 -1
View File
@@ -281,7 +281,7 @@ class URIBasedGlobalTransformCache {
return (
error instanceof FetchError && error.type === 'request-timeout' || (
error instanceof FetchFailedError &&
error.details.type === 'wrong_http_status' &&
error.details.type === 'unhandled_http_status' &&
(error.details.statusCode === 503 || error.details.statusCode === 502)
)
);