[full-ci] revaBump-2.37.0 (#1433)

* revaBump-2.37.0

* Pipeline Restart, empty change

---------

Co-authored-by: Michael 'Flimmy' Flemming <m.flemming@opencloud.eu>
This commit is contained in:
Viktor Scharf
2025-09-02 09:29:50 +02:00
committed by GitHub
co-authored by Michael 'Flimmy' Flemming
parent a637ba34b1
commit 6352068a66
58 changed files with 12132 additions and 221 deletions
+2 -2
View File
@@ -4,14 +4,14 @@ services:
zookeeper:
container_name: zookeeper
hostname: zookeeper
image: bitnami/zookeeper:latest
image: bitnamilegacy/zookeeper:latest
ports:
- 2181:2181
environment:
ALLOW_ANONYMOUS_LOGIN: yes
kafka:
container_name: kafka
image: bitnami/kafka:3.7.0
image: bitnamilegacy/kafka:3.7.0
restart: on-failure:3
links:
- zookeeper
+6 -2
View File
@@ -31,6 +31,9 @@ type ListGroupsResponseGroup struct {
// Coordinator is the ID of the coordinator broker for the group.
Coordinator int
// The group protocol type (eg "consumer", "connect")
ProtocolType string
}
func (c *Client) ListGroups(
@@ -48,8 +51,9 @@ func (c *Client) ListGroups(
for _, apiGroupInfo := range apiResp.Groups {
resp.Groups = append(resp.Groups, ListGroupsResponseGroup{
GroupID: apiGroupInfo.GroupID,
Coordinator: int(apiGroupInfo.BrokerID),
GroupID: apiGroupInfo.GroupID,
Coordinator: int(apiGroupInfo.BrokerID),
ProtocolType: apiGroupInfo.ProtocolType,
})
}
@@ -28,7 +28,7 @@ type RequestPartition struct {
PartitionIndex int32 `kafka:"min=v0,max=v7"`
CommittedOffset int64 `kafka:"min=v0,max=v7"`
CommitTimestamp int64 `kafka:"min=v1,max=v1"`
CommittedLeaderEpoch int32 `kafka:"min=v5,max=v7"`
CommittedLeaderEpoch int32 `kafka:"min=v6,max=v7"`
CommittedMetadata string `kafka:"min=v0,max=v7,nullable"`
}