Skip to content

Commit

Permalink
fix: upgrade Jolokia to 2.2.2 to solve slowness on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed Feb 6, 2025
1 parent 8e223d1 commit cc04cd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void readObject() throws Exception {
JSONObject json = ServletHelpers.readObject(
new BufferedReader(new InputStreamReader(new ByteArrayInputStream(data.getBytes()))));
assertThat(json.get("string"), equalTo("text"));
assertThat(json.get("number"), equalTo(2));
assertThat(json.get("number"), equalTo(2L));
assertThat(json.get("boolean"), equalTo(true));
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

<!-- Versions for major components -->
<!-- Jolokia -->
<jolokia-version>2.2.1</jolokia-version>
<jolokia-version>2.2.2</jolokia-version>
<!-- Quarkus -->
<quarkus-version>3.15.2</quarkus-version>
<!-- Spring -->
Expand Down

0 comments on commit cc04cd1

Please sign in to comment.