Skip to content

Commit

Permalink
Merge pull request redpanda-data#25165 from WillemKauf/nessie_aws_sti…
Browse files Browse the repository at this point in the history
…ll_failing

`rptest`: correct authentication property name in `nessie`
  • Loading branch information
WillemKauf authored Feb 25, 2025
2 parents 39524e9 + a58e31b commit 4526525
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/rptest/services/nessie_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def _make_java_properties(self):
"""
These options don't work nicely with conversion to env variable format.
Specify them as Java -D properties instead.
https://projectnessie.org/nessie-latest/configuration/#s3-default-bucket-settings
"""
d_flags = ""
if isinstance(self.credentials, cloud_storage.S3Credentials):
Expand All @@ -125,7 +126,7 @@ def _make_java_properties(self):
d_flags += "-Dnessie.catalog.validate-secrets=true"
elif isinstance(self.credentials,
cloud_storage.AWSInstanceMetadataCredentials):
d_flags += "-Dnessie.catalog.service.s3.default-options.default-options.server-auth-mode=APPLICATION_GLOBAL"
d_flags += "-Dnessie.catalog.service.s3.default-options.auth-type=APPLICATION_GLOBAL"
return d_flags

def _java_cmd(self, node):
Expand Down

0 comments on commit 4526525

Please sign in to comment.