mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-13 15:29:30 -05:00
Discard destination 'localhost'
This commit is contained in:
parent
47d3ff4cf8
commit
b68e4a729f
@ -107,7 +107,7 @@ class TransactionQueue(object):
|
|||||||
def enqueue_edu(self, edu):
|
def enqueue_edu(self, edu):
|
||||||
destination = edu.destination
|
destination = edu.destination
|
||||||
|
|
||||||
if destination == self.server_name:
|
if destination == self.server_name or destination == "localhost":
|
||||||
return
|
return
|
||||||
|
|
||||||
deferred = defer.Deferred()
|
deferred = defer.Deferred()
|
||||||
@ -128,7 +128,7 @@ class TransactionQueue(object):
|
|||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def enqueue_failure(self, failure, destination):
|
def enqueue_failure(self, failure, destination):
|
||||||
if destination == self.server_name:
|
if destination == self.server_name or destination == "localhost":
|
||||||
return
|
return
|
||||||
|
|
||||||
deferred = defer.Deferred()
|
deferred = defer.Deferred()
|
||||||
|
Loading…
Reference in New Issue
Block a user