Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Plotnikov committed Nov 21, 2023
1 parent c0bc8ef commit 15352d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/exactpro/th2/FixHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -1929,7 +1929,7 @@ private void sendSequenceReset(RuleConfiguration configuration) {
sequenceReset.append(NEW_SEQ_NO).append(msgSeqNum.get() - 5);
setChecksumAndBodyLength(sequenceReset);

channel.send(Unpooled.wrappedBuffer(sequenceReset.toString().getBytes(StandardCharsets.UTF_8)), Collections.emptyMap(), null, SendMode.HANDLE_AND_MANGLE)
channel.send(Unpooled.wrappedBuffer(sequenceReset.toString().getBytes(StandardCharsets.UTF_8)), new HashMap<String, String>(), null, SendMode.HANDLE_AND_MANGLE)
.thenAcceptAsync(x -> strategy.getState().addMessageID(x), executorService);
resetHeartbeatTask();
strategy.cleanupStrategy();
Expand Down

0 comments on commit 15352d9

Please sign in to comment.