]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/smb: fix incorrect referenced variable 69150/head
authorXavi Hernandez <xhernandez@gmail.com>
Wed, 27 May 2026 16:09:10 +0000 (18:09 +0200)
committerJohn Mulligan <jmulligan@redhat.com>
Thu, 28 May 2026 19:10:01 +0000 (15:10 -0400)
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>
(cherry picked from commit c03af0ba8d4744babec94533788cd9a4ea961d0e)

src/pybind/mgr/smb/module.py

index 50b6375311fcd0193b75c5c6f786c49aa6abdda6..18cebac39a13c92727a0ded4f871c4e516d66579 100644 (file)
@@ -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