Skip to content

Commit

Permalink
Fix serialization of reducer metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwartzentruber committed May 31, 2024
1 parent 01d2798 commit 01d137e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grizzly/common/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,9 @@ def add_to_reporter(
"""
# only add detailed stats for expected results
if expected:
reporter.add_extra_metadata("reducer-stats", self.finished_steps)
reporter.add_extra_metadata(
"reducer-stats", [astuple(step) for step in self.finished_steps]
)
# other parameters
if self.analysis:
reporter.add_extra_metadata("reducer-analysis", self.analysis)
Expand Down

0 comments on commit 01d137e

Please sign in to comment.