numinnex commented on code in PR #3151:
URL: https://github.com/apache/iggy/pull/3151#discussion_r3146125857
##########
core/partitions/src/iggy_partition.rs:
##########
@@ -1421,7 +1430,9 @@ where
})?;
Ok((kind, consumer_id, Some(offset)))
}
- Operation::DeleteConsumerOffset => Ok((kind, consumer_id, None)),
+ Operation::DeleteConsumerOffset | Operation::DeleteConsumerOffset2
=> {
+ Ok((kind, consumer_id, None))
+ }
_ => Err(IggyError::InvalidCommand),
}
}
Review Comment:
Yeah, we need to make sure we use the `AckLevel` as that is the main
difference between the old request and new one.
--
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]