mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 23:03:51 +01:00
Use try..finally in contextlib.contextmanager
This commit is contained in:
parent
ded4128965
commit
a971fa9d58
1 changed files with 5 additions and 3 deletions
|
@ -97,7 +97,9 @@ class StreamIdGenerator(object):
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def manager():
|
def manager():
|
||||||
|
try:
|
||||||
yield next_id
|
yield next_id
|
||||||
|
finally:
|
||||||
with self._lock:
|
with self._lock:
|
||||||
self._unfinished_ids.remove(next_id)
|
self._unfinished_ids.remove(next_id)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue