Skip to content

Commit

Permalink
accept json content to receive revokes (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
pymonger authored Jul 14, 2021
1 parent b962937 commit 9699d82
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sdscli/adapters/hysds/files/orch/grq/celeryconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

task_serializer = "msgpack"
result_serializer = "msgpack"
accept_content = ["msgpack"]
accept_content = ["msgpack", "json"]

task_acks_late = True
result_expires = 86400
Expand Down
2 changes: 1 addition & 1 deletion sdscli/adapters/hysds/files/orch/metrics/celeryconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

task_serializer = "msgpack"
result_serializer = "msgpack"
accept_content = ["msgpack"]
accept_content = ["msgpack", "json"]

task_acks_late = True
result_expires = 86400
Expand Down
2 changes: 1 addition & 1 deletion sdscli/adapters/hysds/files/orch/mozart/celeryconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

task_serializer = "msgpack"
result_serializer = "msgpack"
accept_content = ["msgpack"]
accept_content = ["msgpack", "json"]

task_acks_late = True
result_expires = 86400
Expand Down
2 changes: 1 addition & 1 deletion sdscli/adapters/hysds/files/orch/verdi/celeryconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

task_serializer = "msgpack"
result_serializer = "msgpack"
accept_content = ["msgpack"]
accept_content = ["msgpack", "json"]

task_acks_late = True
result_expires = 86400
Expand Down

0 comments on commit 9699d82

Please sign in to comment.