Skip to content
Snippets Groups Projects
Commit 0d37a7bf authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Merge pull request #1803 from matrix-org/erikj/swallow_errors

Fix spurious Unhandled Error log lines
parents 7a13fe16 ebf94aff
Branches
Tags
No related merge requests found
......@@ -86,7 +86,11 @@ class HttpTransactionCache(object):
pass # execute the function instead.
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())
return observable.observe()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment