From 2704badfbeee67ed0bbbb46fe111af2228b24586 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 9 Jun 2021 22:08:32 -0400 Subject: [PATCH] Convert VMConsole... to new ZK schema handler --- node-daemon/pvcnoded/VMConsoleWatcherInstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcnoded/VMConsoleWatcherInstance.py b/node-daemon/pvcnoded/VMConsoleWatcherInstance.py index 3b3d2e72..ce9f1c6a 100644 --- a/node-daemon/pvcnoded/VMConsoleWatcherInstance.py +++ b/node-daemon/pvcnoded/VMConsoleWatcherInstance.py @@ -92,7 +92,7 @@ class VMConsoleWatcherInstance(object): # Update Zookeeper with the new loglines if they changed if self.loglines != self.last_loglines: self.zkhandler.write([ - ('/domains/{}/consolelog'.format(self.domuuid), self.loglines) + (('domain.console.log', self.domuuid), self.loglines) ]) self.last_loglines = self.loglines