Fix bad schema path name

This commit is contained in:
Joshua Boniface 2021-07-09 16:47:09 -04:00
parent 551bae2518
commit 0699c48d10
1 changed files with 1 additions and 1 deletions

View File

@ -798,7 +798,7 @@ def get_console_log(zkhandler, domain, lines=1000):
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
# Get the data from ZK
console_log = zkhandler.read(('domain.log.console', dom_uuid))
console_log = zkhandler.read(('domain.console.log', dom_uuid))
if console_log is None:
return True, ''