Skip to content

Commit

Permalink
fix(celery): use pickle not json as result serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasschaub committed Oct 16, 2023
1 parent 270f73d commit 5260648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sketch_map_tool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def make_flask() -> Flask:
"task_serializer": "pickle",
"task_track_started": True, # report ‘started’ status worker executes task
"task_send_sent_event": True,
"result_serializer": "json",
"result_serializer": "pickle",
"result_extended": True, # save result attributes to backend (e.g. name)
"result_compression": "gzip",
"result_chord_join_timeout": 10.0, # default: 3.0 seconds
Expand Down

0 comments on commit 5260648

Please sign in to comment.