Sxnan commented on code in PR #474:
URL: https://github.com/apache/flink-agents/pull/474#discussion_r2726195187
##########
runtime/src/main/java/org/apache/flink/agents/runtime/context/RunnerContextImpl.java:
##########
@@ -359,7 +360,13 @@ protected static class DurableExecutionRuntimeException
extends RuntimeException
/** Serializable exception info for durable execution persistence. */
public static class DurableExecutionException {
+ private static final String FIELD_MESSAGE = "message";
+ private static final String FIELD_EXCEPTION_CLASS = "exceptionClass";
+
+ @JsonProperty(FIELD_MESSAGE)
Review Comment:
It seems that the `@JsonProperty` values are swapped between the two
fields. `exceptionClass` field should map to "exceptionClass" in JSON, and
`message` should map to "message".
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]