We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 671a936 commit d13bc8eCopy full SHA for d13bc8e
2 files changed
juju/controller.py
@@ -854,7 +854,8 @@ async def _watcher(stop_event):
854
try:
855
results = await utils.run_with_interrupt(
856
watcher.Next(),
857
- stop_event)
+ stop_event,
858
+ log=log)
859
except JujuAPIError as e:
860
if 'watcher was stopped' not in str(e):
861
raise
juju/model.py
@@ -1204,7 +1204,8 @@ async def _all_watcher():
1204
1205
1206
allwatcher.Next(),
1207
- self._watch_stopping)
+ self._watch_stopping,
1208
1209
1210
1211
0 commit comments