]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/smb: fix incorrect referenced variable 69128/head
authorXavi Hernandez <xhernandez@gmail.com>
Wed, 27 May 2026 16:09:10 +0000 (18:09 +0200)
committerXavi Hernandez <xhernandez@gmail.com>
Wed, 27 May 2026 16:10:42 +0000 (18:10 +0200)
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 <xhernandez@gmail.com>
src/pybind/mgr/smb/module.py

index 2a5dbfeef1086bf51cc3cc39d7f893c4de456096..4f69eb9b2e5dad6eb4b19140919d1afe55c231f9 100644 (file)
@@ -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