From 8881b97e8bf0992ed44152733d092dc9309a95e4 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 21 May 2019 23:19:19 -0400 Subject: [PATCH] Correct a missing capitalization --- node-daemon/pvcd/Daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcd/Daemon.py b/node-daemon/pvcd/Daemon.py index 050876f9..db548d5d 100644 --- a/node-daemon/pvcd/Daemon.py +++ b/node-daemon/pvcd/Daemon.py @@ -316,7 +316,7 @@ if enable_networking: common.run_os_command('ip link set {} mtu 9000 up'.format(vni_dev)) # Cluster bridge configuration - logger.out('Setting up cluster network bridge on interface {} with IP {}'.format(vni_dev, vni_dev_ip), state='i') + logger.out('Setting up Cluster network bridge on interface {} with IP {}'.format(vni_dev, vni_dev_ip), state='i') common.run_os_command('brctl addbr brcluster') common.run_os_command('brctl addif brcluster {}'.format(vni_dev)) common.run_os_command('ip link set brcluster mtu 9000 up')