From d6ef722997e8338bfe0dc5d1266785881ae08e54 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 15 Dec 2020 10:51:52 -0500 Subject: [PATCH] Fix bad log message --- node-daemon/pvcnoded/NodeInstance.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/node-daemon/pvcnoded/NodeInstance.py b/node-daemon/pvcnoded/NodeInstance.py index 3ccf6f35..04ba5ef7 100644 --- a/node-daemon/pvcnoded/NodeInstance.py +++ b/node-daemon/pvcnoded/NodeInstance.py @@ -389,10 +389,10 @@ def become_primary(self): ) common.createIPAddress(self.vni_floatingipaddr, self.vni_cidrnetmask, 'brcluster') self.logger.out( - 'Creating floating management IP {}/{} on interface {}'.format( + 'Creating floating storage IP {}/{} on interface {}'.format( self.storage_floatingipaddr, self.storage_cidrnetmask, - 'brcluster' + 'brstorage' ), state='o' ) @@ -588,10 +588,10 @@ def become_secondary(self): ) common.removeIPAddress(self.vni_floatingipaddr, self.vni_cidrnetmask, 'brcluster') self.logger.out( - 'Removing floating management IP {}/{} from interface {}'.format( + 'Removing floating storage IP {}/{} from interface {}'.format( self.storage_floatingipaddr, self.storage_cidrnetmask, - 'brcluster' + 'brstorage' ), state='o' )