forked from goodboy/tractor
Tolerate double `.remove()`s of stream on portal teardowns
parent
5457aa566c
commit
71e779dca3
|
@ -601,7 +601,14 @@ class Context:
|
|||
|
||||
finally:
|
||||
if self._portal:
|
||||
self._portal._streams.remove(rchan)
|
||||
try:
|
||||
self._portal._streams.remove(stream)
|
||||
except KeyError:
|
||||
log.warning(
|
||||
f'Stream was already destroyed?\n'
|
||||
f'actor: {self.chan.uid}\n'
|
||||
f'ctx id: {self.cid}'
|
||||
)
|
||||
|
||||
async def result(self) -> Any:
|
||||
'''
|
||||
|
|
Loading…
Reference in New Issue