diff --git a/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php b/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php --- a/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php +++ b/src/applications/harbormaster/step/HarbormasterHTTPRequestBuildStepImplementation.php @@ -89,7 +89,7 @@ ->newLog($uri, 'http.body') ->append($body); - if ($status->getStatusCode() != 200) { + if ($status->getStatusCode() != 200 || $status->getStatusCode() != 201) { throw new HarbormasterBuildFailureException(); } }