Skip to content
Snippets Groups Projects
Commit 47d3ff4c authored by Erik Johnston's avatar Erik Johnston
Browse files

Don't send failure to self

parent 36e14409
No related branches found
No related tags found
No related merge requests found
......@@ -128,6 +128,9 @@ class TransactionQueue(object):
@defer.inlineCallbacks
def enqueue_failure(self, failure, destination):
if destination == self.server_name:
return
deferred = defer.Deferred()
self.pending_failures_by_dest.setdefault(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment