From 0699c48d10925e5eb512bdea0911b2b6e3b1d0a5 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 9 Jul 2021 16:47:09 -0400 Subject: [PATCH] Fix bad schema path name --- daemon-common/vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon-common/vm.py b/daemon-common/vm.py index 38e81db4..96eb67e0 100644 --- a/daemon-common/vm.py +++ b/daemon-common/vm.py @@ -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, ''