forked from goodboy/tractor
Revert back to avoiding key errors on cancellation
parent
21a9c47496
commit
da5e36bf0c
|
@ -170,6 +170,7 @@ async def maybe_open_context(
|
||||||
await _Cache.lock.acquire()
|
await _Cache.lock.acquire()
|
||||||
|
|
||||||
ctx_key = (id(acm_func), key or tuple(kwargs.items()))
|
ctx_key = (id(acm_func), key or tuple(kwargs.items()))
|
||||||
|
print(ctx_key)
|
||||||
value = None
|
value = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -214,6 +215,10 @@ async def maybe_open_context(
|
||||||
if _Cache.users <= 0:
|
if _Cache.users <= 0:
|
||||||
log.info(f'De-allocating resource for {ctx_key}')
|
log.info(f'De-allocating resource for {ctx_key}')
|
||||||
|
|
||||||
# terminate mngr nursery
|
# XXX: if we're cancelled we the entry may have never
|
||||||
_, no_more_users = _Cache.resources[ctx_key]
|
# been entered since the nursery task was killed.
|
||||||
no_more_users.set()
|
# _, no_more_users = _Cache.resources[ctx_key]
|
||||||
|
entry = _Cache.resources.get(ctx_key)
|
||||||
|
if entry:
|
||||||
|
_, no_more_users = entry
|
||||||
|
no_more_users.set()
|
||||||
|
|
Loading…
Reference in New Issue