Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Plotnikov committed Nov 29, 2023
1 parent 2aa3468 commit 6e25ffd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/exactpro/th2/FixHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -2084,6 +2084,10 @@ private void recoveryFromState(Integer beginSeqNo, Integer endSeqNo) {
} else {
updateSendingTime(missedMessage);
}
FixField possResend = findField(missedMessage, POSS_RESEND_TAG);
if(possResend != null && Objects.equals(possResend.getValue(), IS_POSS_DUP)) {
possResend.clear();
}
updateLength(missedMessage);
updateChecksum(missedMessage);

Expand Down

0 comments on commit 6e25ffd

Please sign in to comment.