Skip to content

Commit

Permalink
fix: OperationSupport should not fail trying to parse Status
Browse files Browse the repository at this point in the history
Closes #5466
  • Loading branch information
shawkins authored and manusa committed Sep 20, 2023
1 parent 0045f45 commit fb7a250
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### 6.9-SNAPSHOT

#### Bugs
* Fix #5466: OperationSupport should not fail trying to parse Status
* Fix #5382: [java-generator] Allow to deserialize more valid RFC3339 date-time and make the format customizable
* Fix #5380: [java-generator] Avoid to emit Java Keywords as package names
* Fix #5463: ensures that onStopLeading is called with releaseOnCancel even when leadership is already lost
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,8 @@ public static Status createStatus(HttpResponse<?> response, KubernetesSerializat
return status;
}
}
} catch (IOException | KubernetesClientException | IllegalArgumentException e) {
// ignored
} catch (IOException | RuntimeException e) {
LOG.debug("Exception convertion response to Status", e);
}
if (response.message() != null) {
statusMessage = response.message();
Expand Down

0 comments on commit fb7a250

Please sign in to comment.