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 06c45e3 + 7b7311a commit 435b54aCopy full SHA for 435b54a
gradle.properties
@@ -1,4 +1,4 @@
1
iexecCommonVersion=4.0.1
2
nexusUser=fake
3
nexusPassword=fake
4
-version=4.0.1
+version=4.0.2
src/main/java/com/iexec/worker/feign/BaseFeignClient.java
@@ -86,7 +86,7 @@ boolean is2xxSuccess(ResponseEntity<?> response) {
86
}
87
88
boolean is4xxClientError(int status) {
89
- return HttpStatus.valueOf(status).is4xxClientError();
+ return status > 0 && HttpStatus.valueOf(status).is4xxClientError();
90
91
92
private void sleep(int millis) {
0 commit comments