Skip to content

Commit

Permalink
Fix bad schema path name
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Jul 9, 2021
1 parent 551bae2 commit 0699c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon-common/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, ''
Expand Down

0 comments on commit 0699c48

Please sign in to comment.