This is an automated email from the ASF dual-hosted git repository.
dajac pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 7b0352f1bd9 MINOR: Fix incorrect versions in
ConsumerGroupDescribeResponse schema (#14447)
7b0352f1bd9 is described below
commit 7b0352f1bd9b923b79e60b18b40f570d4bfafcc0
Author: Anton Agestam <[email protected]>
AuthorDate: Thu Sep 28 18:22:05 2023 +0200
MINOR: Fix incorrect versions in ConsumerGroupDescribeResponse schema
(#14447)
This patch fixes the version of the `AuthorizedOperations` field. The
schema is not used yet so the bug had no impact.
Reviewers: Kirk True <[email protected]>, David Jacot <[email protected]>
---
.../main/resources/common/message/ConsumerGroupDescribeResponse.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/clients/src/main/resources/common/message/ConsumerGroupDescribeResponse.json
b/clients/src/main/resources/common/message/ConsumerGroupDescribeResponse.json
index 1dea4e2ead6..b0c98b78c1a 100644
---
a/clients/src/main/resources/common/message/ConsumerGroupDescribeResponse.json
+++
b/clients/src/main/resources/common/message/ConsumerGroupDescribeResponse.json
@@ -71,7 +71,7 @@
{ "name": "TargetAssignment", "type": "Assignment", "versions":
"0+",
"about": "The target assignment." }
]},
- { "name": "AuthorizedOperations", "type": "int32", "versions": "3+",
"default": "-2147483648",
+ { "name": "AuthorizedOperations", "type": "int32", "versions": "0+",
"default": "-2147483648",
"about": "32-bit bitfield to represent authorized operations for
this group." }
]
}