From: Laura Flores Date: Thu, 19 Mar 2026 14:45:35 +0000 (-0500) Subject: qa/workunits/mgr: account for nvmeof module being "always-on" X-Git-Tag: v21.0.0~30^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=740de93366430e509a52ee31d1c54fe954b41991;p=ceph.git qa/workunits/mgr: account for nvmeof module being "always-on" Post the merge of this: https://github.com/ceph/ceph/pull/67641 Fixes: https://tracker.ceph.com/issues/71631 Signed-off-by: Laura Flores --- diff --git a/qa/workunits/mgr/test_mgr_module_loading_time.sh b/qa/workunits/mgr/test_mgr_module_loading_time.sh index 9901e73ec29c..c202099a8d64 100755 --- a/qa/workunits/mgr/test_mgr_module_loading_time.sh +++ b/qa/workunits/mgr/test_mgr_module_loading_time.sh @@ -164,7 +164,7 @@ if [[ "$stat" != *"active, since"* ]]; then fi echo "Check mgr_status to ensure 'pending_modules' is populated with modules we expect..." -expected='["balancer","cephadm","crash","devicehealth","iostat","nfs","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]' +expected='["balancer","cephadm","crash","devicehealth","iostat","nfs","nvmeof","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]' mgr_status=$("$ceph" tell mgr mgr_status | jq -c '.pending_modules') if [[ "$mgr_status" == "$expected" ]]; then echo "PASS: Expected modules are pending."