From f801289d0ddb5f30f8f7c1853a288068f7e999bc Mon Sep 17 00:00:00 2001 From: Doug Wiegley Date: Mon, 12 Sep 2016 23:36:18 +0000 Subject: [PATCH] Revert "HAProxy uses milliseconds for its timeout values." This reverts commit 6ba4f31fbf446a98af3d0cbfadf18e5cafc2236b. Change-Id: I0fd80b126847ea9b2cebcb2578ea1bd3110b30d4 --- neutronclient/neutron/v2_0/lb/healthmonitor.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/neutronclient/neutron/v2_0/lb/healthmonitor.py b/neutronclient/neutron/v2_0/lb/healthmonitor.py index c2bd70cc9..6fea0a12a 100644 --- a/neutronclient/neutron/v2_0/lb/healthmonitor.py +++ b/neutronclient/neutron/v2_0/lb/healthmonitor.py @@ -66,8 +66,7 @@ class CreateHealthMonitor(neutronV20.CreateCommand): parser.add_argument( '--delay', required=True, - help=_('The time in milliseconds between sending probes to ' - 'members.')) + help=_('The time in seconds between sending probes to members.')) parser.add_argument( '--max-retries', required=True, @@ -76,8 +75,8 @@ class CreateHealthMonitor(neutronV20.CreateCommand): parser.add_argument( '--timeout', required=True, - help=_('Maximum number of milliseconds for a monitor to wait for ' - 'a connection to be established before it times out. The ' + help=_('Maximum number of seconds for a monitor to wait for a ' + 'connection to be established before it times out. The ' 'value must be less than the delay value.')) parser.add_argument( '--type',