mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 16:39:24 -05:00
Fix spurious Unhandled Error log lines
This commit is contained in:
parent
7a13fe16f7
commit
ebf94aff8d
@ -86,7 +86,11 @@ class HttpTransactionCache(object):
|
|||||||
pass # execute the function instead.
|
pass # execute the function instead.
|
||||||
|
|
||||||
deferred = fn(*args, **kwargs)
|
deferred = fn(*args, **kwargs)
|
||||||
observable = ObservableDeferred(deferred)
|
|
||||||
|
# We don't add an errback to the raw deferred, so we ask ObservableDeferred
|
||||||
|
# to swallow the error. This is fine as the error will still be reported
|
||||||
|
# to the observers.
|
||||||
|
observable = ObservableDeferred(deferred, consumeErrors=True)
|
||||||
self.transactions[txn_key] = (observable, self.clock.time_msec())
|
self.transactions[txn_key] = (observable, self.clock.time_msec())
|
||||||
return observable.observe()
|
return observable.observe()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user