From 094445323bdb58a26b703b11a1f9fb9b7732eb99 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Mon, 10 Aug 2009 11:48:32 +0100 Subject: [PATCH] Add constants for a ping confd request Signed-off-by: Guido Trotter <ultrotter@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/constants.py b/lib/constants.py index 302e0c9cf..91c6e31fd 100644 --- a/lib/constants.py +++ b/lib/constants.py @@ -625,10 +625,12 @@ MASTER_POOL_SIZE_DEFAULT = 10 CONFD_PROTOCOL_VERSION = 1 +CONFD_REQ_PING = 0 CONFD_REQ_NODE_ROLE_BYNAME = 1 CONFD_REQ_NODE_PIP_BY_INSTANCE_IP = 2 CONFD_REQS = frozenset([ + CONFD_REQ_PING, CONFD_REQ_NODE_ROLE_BYNAME, CONFD_REQ_NODE_PIP_BY_INSTANCE_IP, ]) -- GitLab