We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 959d7f0 + d13bc8e commit 7aa83cbCopy full SHA for 7aa83cb
3 files changed
.gitignore
@@ -15,3 +15,4 @@ pytestdebug.log
15
.vscode/
16
deb_dist
17
*.tar.gz
18
+.idea/
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