From b0411e8e1a246a392f12005d08c1b405414f3286 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 18 Jun 2019 12:41:38 -0400 Subject: [PATCH] Remove "error" message from Ceph commands This triggeres at every node start and isn't useful. --- node-daemon/pvcd/Daemon.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/node-daemon/pvcd/Daemon.py b/node-daemon/pvcd/Daemon.py index 924ba0c0..51622d94 100644 --- a/node-daemon/pvcd/Daemon.py +++ b/node-daemon/pvcd/Daemon.py @@ -792,8 +792,6 @@ if enable_storage: def cmd(data, stat, event=''): if data: CephInstance.run_command(zk_conn, data.decode('ascii'), d_osd) - else: - logger.out('Invalid data in Ceph command pipeline', state='e') # OSD objects @zk_conn.ChildrenWatch('/ceph/osds')