From 590f9516dcca82edfdf0196298570b1262d655d2 Mon Sep 17 00:00:00 2001 From: Yuval Lifshitz Date: Mon, 15 Apr 2024 13:50:17 +0000 Subject: [PATCH] rgw/notifications: enable notifications debug logs in vstart as well as in: - multisite tests (used for notification v2 migration tests) - the qa suites running notifications enable lifecycle logs in notification tests: for the lc notification test cases this is needed after: 429967917b4f9b5f71214fa3c7718e780728249b Signed-off-by: Yuval Lifshitz --- qa/suites/rgw/notifications/overrides.yaml | 2 ++ qa/suites/rgw/verify/overrides.yaml | 1 + src/test/rgw/test-rgw-common.sh | 2 +- src/vstart.sh | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/qa/suites/rgw/notifications/overrides.yaml b/qa/suites/rgw/notifications/overrides.yaml index 5844541e25564..00f81003aa6f2 100644 --- a/qa/suites/rgw/notifications/overrides.yaml +++ b/qa/suites/rgw/notifications/overrides.yaml @@ -5,6 +5,8 @@ overrides: setuser: ceph setgroup: ceph debug rgw: 20 + debug rgw lifecycle: 20 + debug rgw notification: 20 rgw crypt s3 kms backend: testing rgw crypt s3 kms encryption keys: testkey-1=YmluCmJvb3N0CmJvb3N0LWJ1aWxkCmNlcGguY29uZgo= testkey-2=aWIKTWFrZWZpbGUKbWFuCm91dApzcmMKVGVzdGluZwo= rgw crypt require ssl: false diff --git a/qa/suites/rgw/verify/overrides.yaml b/qa/suites/rgw/verify/overrides.yaml index 71c8ad97c4eae..1b3b5abd7adf2 100644 --- a/qa/suites/rgw/verify/overrides.yaml +++ b/qa/suites/rgw/verify/overrides.yaml @@ -5,6 +5,7 @@ overrides: setuser: ceph setgroup: ceph debug rgw: 20 + debug rgw notification: 20 rgw crypt s3 kms backend: testing rgw crypt s3 kms encryption keys: testkey-1=YmluCmJvb3N0CmJvb3N0LWJ1aWxkCmNlcGguY29uZgo= testkey-2=aWIKTWFrZWZpbGUKbWFuCm91dApzcmMKVGVzdGluZwo= rgw crypt require ssl: false diff --git a/src/test/rgw/test-rgw-common.sh b/src/test/rgw/test-rgw-common.sh index 7f546ea7d230f..ef8d80e132bc5 100644 --- a/src/test/rgw/test-rgw-common.sh +++ b/src/test/rgw/test-rgw-common.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -rgw_flags="--debug-rgw=20 --debug-ms=1" +rgw_flags="--debug-rgw-notification=20 --debug-rgw=20 --debug-ms=1" function _assert { src=$1; shift diff --git a/src/vstart.sh b/src/vstart.sh index 557129b820b57..53d07f77460fa 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -723,6 +723,7 @@ do_rgw_conf() { rgw frontends = $rgw_frontend port=${current_port}${flight_conf:+,arrow_flight} admin socket = ${CEPH_OUT_DIR}/radosgw.${current_port}.asok debug rgw_flight = 20 + debug rgw_notification = 20 EOF current_port=$((current_port + 1)) unset flight_conf -- 2.39.5