Skip to content

Commit

Permalink
[fix][broker] Fix broken build caused by conflict between #17195 and #…
Browse files Browse the repository at this point in the history
…16605 (#17300)

- #17195 changed the method signature that #16605 depended upon
  • Loading branch information
lhotari authored Aug 26, 2022
1 parent c55dda1 commit ba9c01f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public OpSendMsg createOpSendMsg() throws IOException {
messageMetadata.copyFrom(messages.get(0).getMessageBuilder());
ByteBuf encryptedPayload = producer.encryptMessage(messageMetadata, getCompressedBatchMetadataAndPayload());
ByteBufPair cmd = producer.sendMessage(producer.producerId, messageMetadata.getSequenceId(),
1, messageMetadata, encryptedPayload);
1, null, messageMetadata, encryptedPayload);
final OpSendMsg op;

// Shouldn't call create(MessageImpl<?> msg, ByteBufPair cmd, long sequenceId, SendCallback callback),
Expand Down

0 comments on commit ba9c01f

Please sign in to comment.