Move console watcher stop try up
Could cause an exception if d_domain is not defined yet.
This commit is contained in:
parent
772807deb3
commit
df277edf1c
|
@ -217,10 +217,10 @@ def entrypoint():
|
|||
|
||||
# Stop console logging on all VMs
|
||||
logger.out('Stopping domain console watchers', state='s')
|
||||
try:
|
||||
if d_domain is not None:
|
||||
for domain in d_domain:
|
||||
if d_domain[domain].getnode() == config['node_hostname']:
|
||||
try:
|
||||
d_domain[domain].console_log_instance.stop()
|
||||
except Exception:
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue