From f38429b857d5ce0d4a5c4769a84604c63c8764c0 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Tue, 13 Aug 2024 13:06:32 -0400 Subject: [PATCH] qa/s3tests: configure tenant name for 's3 tenant' section Signed-off-by: Casey Bodley --- qa/tasks/s3tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/tasks/s3tests.py b/qa/tasks/s3tests.py index cd0cd9d146d7..6d7b39d58921 100644 --- a/qa/tasks/s3tests.py +++ b/qa/tasks/s3tests.py @@ -89,6 +89,8 @@ def _config_user(s3tests_conf, section, user, email): s3tests_conf[section].setdefault('totp_seed', base64.b32encode(os.urandom(40)).decode()) s3tests_conf[section].setdefault('totp_seconds', '5') + if section == 's3 tenant': + s3tests_conf[section].setdefault('tenant', 'testx') @contextlib.contextmanager -- 2.47.3