From 24ff4c8fc74668feac98968778af7efefad2c630 Mon Sep 17 00:00:00 2001 From: Erik Reid <erik.reid@geant.org> Date: Fri, 19 Jul 2019 09:03:58 +0200 Subject: [PATCH] added a debug message --- inventory_provider/tasks/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inventory_provider/tasks/common.py b/inventory_provider/tasks/common.py index 2aedf8de..5328815c 100644 --- a/inventory_provider/tasks/common.py +++ b/inventory_provider/tasks/common.py @@ -37,6 +37,9 @@ def get_latch(r): def set_latch(config, new_current, new_next): + logger.debug('setting latch: new current={}, new next={}'.format( + new_current, new_next)) + for db in config['redis-databases']: latch = { 'current': new_current, -- GitLab