diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-12-30 20:04:44 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-12-30 20:04:44 +0000 |
commit | 62ce3034f3096d7a7e920200d2a7cbd5534f655b (patch) | |
tree | 0bafdba6cf08770fe1aa5d705210fad7d2a78452 /synapse/util | |
parent | Add more useful logging when we block fetching events (diff) | |
download | synapse-62ce3034f3096d7a7e920200d2a7cbd5534f655b.tar.xz |
s/aquire/acquire/g
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/async.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/async.py b/synapse/util/async.py index 1e124163fa..4280455cbe 100644 --- a/synapse/util/async.py +++ b/synapse/util/async.py @@ -185,7 +185,7 @@ class Linearizer(object): self.key_to_defer[key] = new_defer if current_defer: - logger.info("Waiting to aquire linearizer lock for key %r", key) + logger.info("Waiting to acquire linearizer lock for key %r", key) with PreserveLoggingContext(): yield current_defer |