We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85fbcc4 commit 146e409Copy full SHA for 146e409
caso/messenger/noop.py
@@ -17,7 +17,6 @@
17
"""Module containing a No-Op (No Operation) messenger that does nothing."""
18
19
from oslo_log import log
20
-import six
21
22
import caso.messenger
23
@@ -29,5 +28,5 @@ class NoopMessenger(caso.messenger.BaseMessenger):
29
28
30
def push(self, records):
31
"""Push records to nowhere."""
32
- for uuid, _ in six.iteritems(records):
33
- LOG.info(f"nooping {uuid}")
+ for record in records:
+ LOG.info(f"nooping {record.uuid} for record {record.__class__}")
0 commit comments