From 9b882e54602d7767fa7fdf2836e179c9e656cd84 Mon Sep 17 00:00:00 2001 From: Yuval Lifshitz Date: Tue, 18 Feb 2025 19:09:17 +0000 Subject: [PATCH] reef: fix issue with bucket notification test the get_ip() function now uses the get_ip_http() implementation. (without that test are sometimes failing with multiple RGWs). however, the name was modified to get_ip(), and this was not updated in all tests. Signed-off-by: Yuval Lifshitz --- src/test/rgw/bucket_notification/test_bn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/rgw/bucket_notification/test_bn.py b/src/test/rgw/bucket_notification/test_bn.py index 8982a50d40c..af126f8ae50 100644 --- a/src/test/rgw/bucket_notification/test_bn.py +++ b/src/test/rgw/bucket_notification/test_bn.py @@ -1696,7 +1696,7 @@ def test_ps_s3_notification_multi_delete_on_master(): @attr('http_test') def test_ps_s3_notification_push_http_on_master(): """ test pushing http s3 notification on master """ - hostname = get_ip_http() + hostname = get_ip() conn = connection() zonegroup = 'default' @@ -1780,7 +1780,7 @@ def test_ps_s3_notification_push_http_on_master(): @attr('http_test') def test_ps_s3_notification_push_cloudevents_on_master(): """ test pushing cloudevents notification on master """ - hostname = get_ip_http() + hostname = get_ip() conn = connection() zonegroup = 'default' -- 2.39.5