-
Notifications
You must be signed in to change notification settings - Fork 66
Closed
Labels
feature/kafka-aclfeedbackpriority/important-longtermImportant over the long term, but may not be currently staffed and/or may require multiple releasesImportant over the long term, but may not be currently staffed and/or may require multiple releases
Description
For the ACL CRUD commands we have mapped all enums from permission, operation, resource type to lower case forms. There are a couple of reasons making the user enter uppercase values is not preferred and we should try to avoid this:
- It is more difficult to type, as the user must turn on CAPS LOCK.
- It is more difficult to read, as uppercase letters are more uniform and harder to tell apart.
Current output:
PRINCIPAL (6) PERMISSION OPERATION DESCRIPTION
---------------- ------------ ------------------ ----------------------------
All accounts ALLOW DESCRIBE_CONFIGS TOPIC is "*"
All accounts ALLOW DESCRIBE TOPIC is "*" Preferred output:
PRINCIPAL (6) PERMISSION OPERATION DESCRIPTION
---------------- ------------ ------------------ ----------------------------
All accounts allow describe-configs topic is "*"
All accounts allow describe topic is "*" Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature/kafka-aclfeedbackpriority/important-longtermImportant over the long term, but may not be currently staffed and/or may require multiple releasesImportant over the long term, but may not be currently staffed and/or may require multiple releases