Skip to content

Commit

Permalink
Fix bad log message
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboniface committed Dec 15, 2020
1 parent 518d699 commit d6ef722
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node-daemon/pvcnoded/NodeInstance.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
Expand Down Expand Up @@ -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'
)
Expand Down

0 comments on commit d6ef722

Please sign in to comment.