Skip to content

Commit

Permalink
Merge pull request #3561 from jamezp/RESTEASY-3317-6.2
Browse files Browse the repository at this point in the history
[RESTEASY-3317] Upgrade the tracing-api and remove usage of the depre…
  • Loading branch information
jamezp committed Apr 17, 2023
2 parents 7c8a5bc + 63e3754 commit a9ff8a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Jackson2JsonFormatRESTEasyTracingInfo extends TextBasedRESTEasyTrac
@Override
public String[] getMessages() {
try {
return new String[]{mapper.writeValueAsString(messageList)};
return new String[]{mapper.writeValueAsString(pop())};
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class JSONBJsonFormatRESTEasyTracingInfo extends TextBasedRESTEasyTracing
@Override
public String[] getMessages() {
try {
return new String[]{mapper.toJson(messageList)};
return new String[]{mapper.toJson(pop())};
} catch (Exception e) {
throw new RuntimeException(e);
}
Expand Down
2 changes: 1 addition & 1 deletion resteasy-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<version.org.jboss.logging.jboss-logging>3.5.0.Final</version.org.jboss.logging.jboss-logging>
<version.org.jboss.logging.jboss-logging-annotations>2.2.1.Final</version.org.jboss.logging.jboss-logging-annotations>
<version.org.jboss.logmanager>2.1.19.Final</version.org.jboss.logmanager>
<version.org.jboss.resteasy.extensions>2.0.0.Final</version.org.jboss.resteasy.extensions>
<version.org.jboss.resteasy.extensions>2.0.1.Final</version.org.jboss.resteasy.extensions>
<version.jakarta.annotation.jakarta-annotation-api>2.1.1</version.jakarta.annotation.jakarta-annotation-api>
<version.jakarta.el.el-api>4.0.0</version.jakarta.el.el-api>
<version.jakarta.ejb.ejb-api>4.0.1</version.jakarta.ejb.ejb-api>
Expand Down

0 comments on commit a9ff8a9

Please sign in to comment.