Skip to content

Commit

Permalink
config: enable remote labels by default
Browse files Browse the repository at this point in the history
With this activated in tests, updates several tests that now need to
account for the new paths.
  • Loading branch information
andrwng committed Jul 1, 2024
1 parent d1a4da8 commit 14a9e3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/v/config/configuration.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2169,8 +2169,7 @@ configuration::configuration()
"naming scheme for new topics. This property exists to simplify testing "
"and shouldn't be set in production.",
{.needs_restart = needs_restart::no, .visibility = visibility::tunable},
// TODO(awong): enable once stable
true)
false)
, cloud_storage_azure_storage_account(
*this,
"cloud_storage_azure_storage_account",
Expand Down
4 changes: 2 additions & 2 deletions tests/rptest/tests/archival_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,8 +814,8 @@ def _get_redpanda_s3_checksums(self):
"""Get MD5 checksums of log segments stored in S3 (minio). The paths are
normalized (<namespace>/<topic>/<partition>_<rev>/...)."""
def normalize(path):
# strip archiver term id from the segment path
path = path[9:]
# strip archiver cluster UUID prefix from the segment path
path = path[37:]
match = LOG_EXPRESSION.match(path)
if match:
return match[1]
Expand Down

0 comments on commit 14a9e3a

Please sign in to comment.