Skip to content

Commit

Permalink
[Travis] Attempt to fix build celery#2
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Mar 18, 2016
1 parent b915b59 commit 5f62a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celery/backends/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def _store_result(self, task_id, result, state,
traceback=None, request=None, **kwargs):
meta = {'status': state, 'result': result, 'traceback': traceback,
'children': self.current_task_children(request),
'task_id': task_id}
'task_id': bytes_to_str(task_id)}
self.set(self.get_key_for_task(task_id), self.encode(meta))
return result

Expand Down

0 comments on commit 5f62a7c

Please sign in to comment.