Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions plugins/state_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,12 @@ def now_then(key):
"%s data: %r", pretty_name,
{key: str(value) for key, value in data.items()})

# Update state for next pass through the pipeline
self._previous_data = input_data
finally:
# Update state for next pass through the pipeline
self._previous_data = input_data

# Pass through the input for consumption by any further steps
return input_data
# Pass through the input for consumption by any further steps
return input_data

def send_message(self, msg):
"""
Expand Down