From 249999df6faf2f20bce67031ae3611a2ff9b31d5 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Mon, 27 Apr 2026 09:36:05 -0400 Subject: [PATCH] qa/rgw: RGWEndpoint.url() contains dns-name if configured Signed-off-by: Casey Bodley --- qa/tasks/rgw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/rgw.py b/qa/tasks/rgw.py index dbff5171f5d..aaa90bb4ba6 100644 --- a/qa/tasks/rgw.py +++ b/qa/tasks/rgw.py @@ -29,7 +29,7 @@ class RGWEndpoint: def url(self): proto = 'https' if self.cert else 'http' - return '{proto}://{hostname}:{port}/'.format(proto=proto, hostname=self.hostname, port=self.port) + return '{proto}://{hostname}:{port}/'.format(proto=proto, hostname=self.dns_name, port=self.port) @contextlib.contextmanager def start_rgw(ctx, config, clients): -- 2.47.3