We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f28a591 commit 1d41b38Copy full SHA for 1d41b38
2 files changed
juju/controller.py
@@ -828,7 +828,8 @@ async def _watcher(stop_event):
828
try:
829
results = await utils.run_with_interrupt(
830
watcher.Next(),
831
- stop_event)
+ stop_event,
832
+ log=log)
833
except JujuAPIError as e:
834
if 'watcher was stopped' not in str(e):
835
raise
juju/model.py
@@ -1115,7 +1115,8 @@ async def _all_watcher():
1115
1116
1117
allwatcher.Next(),
1118
- self._watch_stopping)
+ self._watch_stopping,
1119
1120
1121
1122
0 commit comments