Skip to content

Commit

Permalink
fix (kubernetes-model-core) : Add @JsonIgnore on Quantity additiona…
Browse files Browse the repository at this point in the history
…lProperties parameter (#4993)

Signed-off-by: Rohan Kumar <[email protected]>
  • Loading branch information
rohanKanojia authored and manusa committed Apr 19, 2023
1 parent 648d470 commit 2fcc9de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#### Bugs
* Fix #4910: Pod file upload will now detect if it's not completely sent to the api server
* Fix #4793: (java-generator) Fix broken POJO generation when two schema properties collide into a single field name
* Fix #4993: Quantity class should have @JsonIgnore on the additionalProperties parameter
* Fix #4963: Openshift Client return 403 when use websocket
* Fix #4985: triggering the immediate cleanup of the okhttp idle task
* Fix #4988: Ensuring that previous requests are closed before retry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
public class Quantity implements Serializable {
private String amount;
private String format = "";
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<>();

/**
Expand Down

0 comments on commit 2fcc9de

Please sign in to comment.