Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RESTEASY-3317] Upgrade the tracing-api and remove usage of the depre… #3561

Merged
merged 1 commit into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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