Skip to content

Commit

Permalink
Raise RuntimeError if watcher.cancel() is called after client.close()
Browse files Browse the repository at this point in the history
  • Loading branch information
mk-fg committed Jan 14, 2022
1 parent ad133db commit 19bf4b2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
6 changes: 5 additions & 1 deletion aetcd/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,13 +644,17 @@ async def response_callback(response):
canceled = asyncio.Event()

async def cancel():
if not self._watcher:
raise RuntimeError('Calling watcher.cancel() on a closed client')
canceled.set()
await events.put(None)
await self._watcher.cancel(watcher_callback.watch_id)

@_handle_errors
async def iterator():
while not canceled.is_set():
if not self._watcher:
raise RuntimeError('Using watcher as iterator on a closed client')
while not canceled.is_set():
event = await events.get()
if event is None:
canceled.set()
Expand Down
13 changes: 13 additions & 0 deletions tests/integration/test_watch.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,16 @@ async def test_watch_key_ignores_global_timeout(client, etcdctl_put):
break

await w.cancel()


@pytest.mark.asyncio
async def test_watch_for_closed_client(etcd, etcdctl_put):
w = await etcd.watch(b'key')
etcdctl_put('key', '1')
await etcd.close()
etcdctl_put('key', '2')
with pytest.raises(RuntimeError):
async for kv in w:
raise AssertionError('non-empty watcher iterator with closed client')
with pytest.raises(RuntimeError):
await w.cancel()

0 comments on commit 19bf4b2

Please sign in to comment.