From: Casey Bodley Date: Mon, 27 Apr 2026 13:36:05 +0000 (-0400) Subject: qa/rgw: RGWEndpoint.url() contains dns-name if configured X-Git-Tag: v21.0.1~135^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=249999df6faf2f20bce67031ae3611a2ff9b31d5;p=ceph.git qa/rgw: RGWEndpoint.url() contains dns-name if configured Signed-off-by: Casey Bodley --- 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):