Skip to content

Commit

Permalink
rpk/group/describe: fixed printing group instance id
Browse files Browse the repository at this point in the history
Previously group instance id was printed as an address as pointer was
not dereferenced.

Signed-off-by: Michal Maslanka <michal@vectorized.io>
  • Loading branch information
mmaslankaprv committed May 10, 2022
1 parent 2f0b8a6 commit 8079161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/go/rpk/pkg/cli/cmd/group/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func printDescribedGroup(
headers = append(headers, "INSTANCE-ID")
orig := args
args = func(r *describeRow) []interface{} {
return append(orig(r), r.instanceID)
return append(orig(r), *r.instanceID)
}
}

Expand Down

0 comments on commit 8079161

Please sign in to comment.