From: Xavi Hernandez Date: Wed, 27 May 2026 16:09:10 +0000 (+0200) Subject: mgr/smb: fix incorrect referenced variable X-Git-Tag: v21.0.1~123^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c03af0ba8d4744babec94533788cd9a4ea961d0e;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 --- diff --git a/src/pybind/mgr/smb/module.py b/src/pybind/mgr/smb/module.py index 2a5dbfeef10..4f69eb9b2e5 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