We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guys, it looks like you are still using deprecated format for namespace object inside Group API.
For example:
"namespaces": [ { "wildcards": [ "*" ], "permissions": [ "CreateTopic", "DropTopic", "ConfigureTopic", "QueryTopic", "ShowTopic", "ViewSchema" ], "system": "Kafka", "instance": "Dev" }, { "wildcards": [ "abc*" ], "permissions": [ "QueryTopic", "ShowTopic", "ViewSchema" ], "system": "Kafka", "instance": "Dev" } ]
I'm talking about this part of namespace list:
"system": "Kafka", "instance": "Dev"
As far as I see this format had been deprecated since lenses 4.0 version and for now the format of namespace object is:
"namespaces": [ { "wildcards": [ "string" ], "permissions": [ "CreateTopic" ], "connection": "string" } ],
So "system": "Kafka", "instance": "Dev" has to be replaced by "connection": "string"
"connection": "string"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Guys, it looks like you are still using deprecated format for namespace object inside Group API.
For example:
"namespaces": [ { "wildcards": [ "*" ], "permissions": [ "CreateTopic", "DropTopic", "ConfigureTopic", "QueryTopic", "ShowTopic", "ViewSchema" ], "system": "Kafka", "instance": "Dev" }, { "wildcards": [ "abc*" ], "permissions": [ "QueryTopic", "ShowTopic", "ViewSchema" ], "system": "Kafka", "instance": "Dev" } ]
I'm talking about this part of namespace list:
"system": "Kafka", "instance": "Dev"
As far as I see this format had been deprecated since lenses 4.0 version and for now the format of namespace object is:
"namespaces": [ { "wildcards": [ "string" ], "permissions": [ "CreateTopic" ], "connection": "string" } ],
So
"system": "Kafka", "instance": "Dev"
has to be replaced by"connection": "string"
The text was updated successfully, but these errors were encountered: