From c03af0ba8d4744babec94533788cd9a4ea961d0e Mon Sep 17 00:00:00 2001 From: Xavi Hernandez Date: Wed, 27 May 2026 18:09:10 +0200 Subject: [PATCH] mgr/smb: fix incorrect referenced variable An unassigned variable was used in a log message. Replace it by the relevant one. Fixes: https://tracker.ceph.com/issues/76947 Signed-off-by: Xavi Hernandez --- src/pybind/mgr/smb/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/smb/module.py b/src/pybind/mgr/smb/module.py index 2a5dbfeef108..4f69eb9b2e5d 100644 --- a/src/pybind/mgr/smb/module.py +++ b/src/pybind/mgr/smb/module.py @@ -177,7 +177,7 @@ class Module(orchestrator.OrchestratorClientMixin, MgrModule): # passwords - this will be the inverse of the filter applied to # the input out_op = (PasswordFilter.NONE, out_pf) - log.debug('Password filtering for smb apply output: %r', in_op) + log.debug('Password filtering for smb apply output: %r', out_op) all_results = all_results.convert_results(out_op) return all_results -- 2.47.3