summary refs log tree commit diff
path: root/synapse/util/async_helpers.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-19 18:01:36 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-19 18:01:36 +0000
commit3fcb3608602854a31a1ab7bf59d248d99772d5c7 (patch)
tree69bd0bd05b47f9cba9d2717a922013401c1afaea /synapse/util/async_helpers.py
parentAutomatically delete empty groups/communities (#6453) (diff)
parentPersist auth/state events at backwards extremities when we fetch them (#6526) (diff)
downloadsynapse-3fcb3608602854a31a1ab7bf59d248d99772d5c7.tar.xz
Persist auth/state events at backwards extremities when we fetch them (#6526)
* commit 'bc7de8765':
  Persist auth/state events at backwards extremities when we fetch them (#6526)
Diffstat (limited to 'synapse/util/async_helpers.py')
-rw-r--r--synapse/util/async_helpers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/util/async_helpers.py b/synapse/util/async_helpers.py

index 5c4de2e69f..04b6abdc24 100644 --- a/synapse/util/async_helpers.py +++ b/synapse/util/async_helpers.py
@@ -140,8 +140,8 @@ def concurrently_execute(func, args, limit): Args: func (func): Function to execute, should return a deferred or coroutine. - args (list): List of arguments to pass to func, each invocation of func - gets a signle argument. + args (Iterable): List of arguments to pass to func, each invocation of func + gets a single argument. limit (int): Maximum number of conccurent executions. Returns: