Skip to content

Commit

Permalink
handle deserialize
Browse files Browse the repository at this point in the history
  • Loading branch information
baomingyu committed Mar 8, 2024
1 parent 69d84b8 commit 756dae3
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 @@ -34,7 +34,7 @@ default boolean isIgnoreFailure() {
};

/**
* This method is called when there is a failure occurred while parsing not InLongMsg.
* This method is called when there is a failure occurred while parsing non-InLong message.
*
* @param msg the msg byte
* @param exception the thrown exception
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class IgnoreFailureHandler implements FailureHandler {

@Override
public void onParsingMsgFailure(Object msg, Exception exception) {
LOG.error("Could not properly serialize msg=[{}].", msg, exception);
LOG.error("Could not properly deserialize msg=[{}].", msg, exception);
};

@Override
Expand Down

0 comments on commit 756dae3

Please sign in to comment.