diff options
| author | Zuul <zuul@review.openstack.org> | 2018-08-14 17:44:18 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2018-08-14 17:44:18 +0000 |
| commit | a84aa492a6ebf8f4b4fa7fcf986462f0adaf5a47 (patch) | |
| tree | 2547359b8cd8f1fe0398a5b9e40124c6c64ab94e /openstackclient | |
| parent | 130da80eeefed442c1a9b0a03c7377bfd468f0b5 (diff) | |
| parent | 5c0de6edc2aa55fbf1aa65bbcee0c0bfeb9db17f (diff) | |
| download | python-openstackclient-a84aa492a6ebf8f4b4fa7fcf986462f0adaf5a47.tar.gz | |
Merge "Detailed help message for QoS max-burst-kbps value"
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/network/v2/network_qos_rule.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openstackclient/network/v2/network_qos_rule.py b/openstackclient/network/v2/network_qos_rule.py index 9c4275a8..28c5600a 100644 --- a/openstackclient/network/v2/network_qos_rule.py +++ b/openstackclient/network/v2/network_qos_rule.py @@ -141,7 +141,10 @@ def _add_rule_arguments(parser): dest='max_burst_kbits', metavar='<max-burst-kbits>', type=int, - help=_('Maximum burst in kilobits, 0 means automatic') + help=_('Maximum burst in kilobits, 0 or not specified means ' + 'automatic, which is 80%% of the bandwidth limit, which works ' + 'for typical TCP traffic. For details check the QoS user ' + 'workflow.') ) parser.add_argument( '--dscp-mark', |
