-
Notifications
You must be signed in to change notification settings - Fork 600
New issue
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
[CORE 8273] Adjust license warning text to include trial license links #24261
Conversation
8c3aa1d
to
b4209a4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
few copy edits, otherwise looks awesome
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice groupings!
just a couple of minor comments
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58582#01935508-57f3-4541-b166-2b90a9d45266:
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58582#01935508-57f0-4df5-8cc3-c097e9958120:
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58582#0193551b-adc8-4142-97d1-71b888efb2f2:
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58582#0193551b-adc3-48a2-9a12-8dbe27271910:
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58582#0193551b-adc5-43e7-83d9-250a85272a8c:
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58582#01935508-57f2-4c09-8ecb-fd9e405f7558:
non flaky failures in https://buildkite.com/redpanda/redpanda/builds/58599#019355e8-150d-4fc4-b6e5-533da9bca896:
|
Retry command for Build#58582please wait until all jobs are finished before running the slash command
|
b4209a4
to
0f27174
Compare
Changes in force-push
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
0f27174
to
edb62f0
Compare
CI Failures:
|
the below tests from https://buildkite.com/redpanda/redpanda/builds/58599#0193558e-8be9-460e-ad15-7de7661242ba have failed and will be retried
|
Retry command for Build#58599please wait until all jobs are finished before running the slash command
|
ducktape was retried in https://buildkite.com/redpanda/redpanda/builds/58599#019355d4-876a-4024-b029-41989a7c63db |
Signed-off-by: Ben Pope <ben@redpanda.com>
Signed-off-by: Ben Pope <ben@redpanda.com>
edb62f0
to
78a0d9d
Compare
Changes in force-push
|
Signed-off-by: Ben Pope <ben@redpanda.com>
Signed-off-by: Ben Pope <ben@redpanda.com>
Signed-off-by: Ben Pope <ben@redpanda.com>
For CreateACLs over the Kafka API, the error code is changed to invalid_config to match topic create/alter. Signed-off-by: Ben Pope <ben@redpanda.com>
Signed-off-by: Ben Pope <ben@redpanda.com>
78a0d9d
to
f705dec
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
/backport v24.3.x |
Failed to create a backport PR to v24.3.x branch. I tried:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
auto ec = map_topic_error_code(results[i]); | ||
response.data.results.push_back( | ||
creatable_acl_result{.error_code = ec}); | ||
if (results[i] == cluster::errc::feature_disabled) { | ||
response.data.results.back().error_message.emplace( | ||
"An enterprise license is required to create an ACL with a " | ||
"role binding"); | ||
response.data.results.emplace_back( | ||
error_code::invalid_config, | ||
features::enterprise_error_message::acl_with_rbac()); | ||
} else { | ||
response.data.results.emplace_back( | ||
map_topic_error_code(results[i])); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
Adjust license warning text to include trial license links.
Adjust CreateACLs response error to
invalid_config
fromunknown_server_error
, to match topic create/alter.Backports Required
Release Notes