From 2fb7c4049733ca9696675dfc849b64f6a38260b5 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 7 Mar 2024 14:37:05 -0500 Subject: [PATCH] Work around bad plugin data --- daemon-common/node.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon-common/node.py b/daemon-common/node.py index ecc93291..5b6cdcc8 100644 --- a/daemon-common/node.py +++ b/daemon-common/node.py @@ -69,6 +69,8 @@ def getNodeHealthDetails(zkhandler, node_name, node_health_plugins): plugin_message, plugin_data, ) = tuple(all_plugin_data[pos_start:pos_end]) + if plugin_data is None: + continue plugin_output = { "name": plugin, "last_run": int(plugin_last_run) if plugin_last_run is not None else None,