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 04:56:31 -07:00 committed by Facebook Github Bot
parent 8d34f16a70
commit 4c2427126f
1 changed files with 1 additions and 1 deletions

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)
)
);