Skip to content

Commit

Permalink
Merge pull request #4927 from VadimPlh/VadimPlh-patch-1
Browse files Browse the repository at this point in the history
kafka/server: Fix operator<< for offset_metadata
  • Loading branch information
dotnwat committed May 25, 2022
2 parents 44e64fa + 29b1a66 commit 8c37f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/kafka/server/group.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2672,7 +2672,7 @@ void group::add_pending_member(
std::ostream& operator<<(std::ostream& o, const group::offset_metadata& md) {
fmt::print(
o,
"{log_offset:{}, offset:{}, metadata:{}, committed_leader_epoch:{}}",
"{{log_offset:{}, offset:{}, metadata:{}, committed_leader_epoch:{}}}",
md.log_offset,
md.offset,
md.metadata,
Expand Down

0 comments on commit 8c37f41

Please sign in to comment.