Enhance log storage to support more data types (#1530)

This commit is contained in:
Robin Wang
2024-10-31 04:45:19 +08:00
committed by GitHub
parent 6193eb13fa
commit 4ae07468f3
2 changed files with 3 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ class KickoffTaskOutputsSQLiteStorage:
task.expected_output,
json.dumps(output, cls=CrewJSONEncoder),
task_index,
json.dumps(inputs),
json.dumps(inputs, cls=CrewJSONEncoder),
was_replayed,
),
)