Modify the help of connection-limit

In lbaasv2,connection-limit belongs to listener instead of vip,
and it limits the service with certain protocol,ip and port.
So the older help is not suitable.
help=_('The maximum number of connections per second allowed for '
               'the vip.

Change-Id: Id48be6823c2c3466f59c79b5683366c254c89564
Closes-Bug: 1579312
This commit is contained in:
liujingzte
2016-07-07 15:33:44 +08:00
committed by JingLiu
parent 1828552b9c
commit cdb0a85490

View File

@@ -45,7 +45,8 @@ def _add_common_args(parser):
'--connection-limit',
type=int,
help=_('The maximum number of connections per second allowed for '
'the vip. Positive integer or -1 for unlimited (default).'))
'the listener. Positive integer or -1 '
'for unlimited (default).'))
parser.add_argument(
'--default-pool',
help=_('Default pool for the listener.'))