From e2a08e7e73e45f4fac8285117b807dff43361294 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 11 Oct 2019 09:09:42 -0400 Subject: [PATCH] Fix bug in initial recheck scheduling This was causing rechecktime to not be set correctly. This caused a trace in python3, but indicates an incorrect behavior when running under python2 --- confluent_server/confluent/discovery/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_server/confluent/discovery/core.py b/confluent_server/confluent/discovery/core.py index 202edf21..acdef04c 100644 --- a/confluent_server/confluent/discovery/core.py +++ b/confluent_server/confluent/discovery/core.py @@ -1207,6 +1207,7 @@ def rescan(): def start_detection(): global attribwatcher global rechecker + global rechecktime _map_unique_ids() cfg = cfm.ConfigManager(None) allnodes = cfg.list_nodes()