Skip to content

Commit

Permalink
Version bump + missing changes (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 authored Dec 22, 2020
1 parent 6cc0c82 commit 092ba79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion karton/core/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.3"
__version__ = "4.0.5"
2 changes: 1 addition & 1 deletion karton/core/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def consume_log(
item = pubsub.get_message(
ignore_subscribe_messages=True, timeout=timeout
)
if item and item["type"] == "message":
if item and item["type"] == "pmessage":
body = json.loads(item["data"])
if "task" in body and isinstance(body["task"], str):
body["task"] = json.loads(body["task"])
Expand Down

0 comments on commit 092ba79

Please sign in to comment.