Skip to content
This repository has been archived by the owner on Jun 12, 2018. It is now read-only.

Commit

Permalink
Add missing argument to _store_outbound_in_event_cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgestar committed May 20, 2015
1 parent 2eb14e5 commit d4de093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vumitools/app_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def find_message_for_event(self, event):

outbound = yield self._find_outboundmessage_for_event(event)
outbound_msg = outbound.msg if outbound is not None else None
self._store_outbound_in_event_cache(outbound_msg)
self._store_outbound_in_event_cache(event, outbound_msg)
returnValue(outbound_msg)

@inlineCallbacks
Expand Down

0 comments on commit d4de093

Please sign in to comment.