From 87fb199f37c223f1e56bb18688e834f9ce20a4e0 Mon Sep 17 00:00:00 2001 From: Ondrej Mular Date: Fri, 19 Jan 2018 12:35:07 +0100 Subject: [PATCH] python3 fix --- pcs/lib/commands/sbd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcs/lib/commands/sbd.py b/pcs/lib/commands/sbd.py index 749427f04..2704300c7 100644 --- a/pcs/lib/commands/sbd.py +++ b/pcs/lib/commands/sbd.py @@ -213,7 +213,8 @@ def enable_sbd( lib_env.report_processor.process_list( _check_node_names_in_cluster( - node_list, watchdog_dict.keys() + node_device_dict.keys() + node_list, + list(watchdog_dict.keys()) + list(node_device_dict.keys()) ) + _validate_watchdog_dict(full_watchdog_dict)