From: Xavi Hernandez Date: Wed, 27 May 2026 16:09:10 +0000 (+0200) Subject: mgr/smb: fix incorrect referenced variable X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6522a14aa2554f964ff15d15d54260f98c872732;p=ceph.git 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 (cherry picked from commit c03af0ba8d4744babec94533788cd9a4ea961d0e) --- diff --git a/src/pybind/mgr/smb/module.py b/src/pybind/mgr/smb/module.py index 50b6375311f..18cebac39a1 100644 --- a/src/pybind/mgr/smb/module.py +++ b/src/pybind/mgr/smb/module.py @@ -167,7 +167,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