0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-13 22:58:46 +02:00

Merge pull request #2507 from matrix-org/rav/execute_concurrently_log_contexts

Fix logcontext handling for concurrently_execute
This commit is contained in:
Richard van der Hoff 2017-10-09 17:43:32 +01:00 committed by GitHub
commit aa3fac8057

View file

@ -19,7 +19,7 @@ from twisted.internet import defer, reactor
from .logcontext import (
PreserveLoggingContext, preserve_fn, preserve_context_over_deferred,
)
from synapse.util import unwrapFirstError
from synapse.util import logcontext, unwrapFirstError
from contextlib import contextmanager
@ -155,7 +155,7 @@ def concurrently_execute(func, args, limit):
except StopIteration:
pass
return preserve_context_over_deferred(defer.gatherResults([
return logcontext.make_deferred_yieldable(defer.gatherResults([
preserve_fn(_concurrently_execute_inner)()
for _ in xrange(limit)
], consumeErrors=True)).addErrback(unwrapFirstError)