diff options
author | Zhongyue Luo <lzyeval@gmail.com> | 2012-05-24 04:02:23 +0800 |
---|---|---|
committer | Zhongyue Luo <lzyeval@gmail.com> | 2012-05-24 04:51:17 +0800 |
commit | db0f2836df84f6c2d3098b7a87896e7a276bd862 (patch) | |
tree | 30423380478eed1102392a466e5f05973159b28a | |
parent | c7378032c8bbdc77efb98f427b73df096dd82085 (diff) | |
download | nova-db0f2836df84f6c2d3098b7a87896e7a276bd862.tar.gz nova-db0f2836df84f6c2d3098b7a87896e7a276bd862.tar.xz nova-db0f2836df84f6c2d3098b7a87896e7a276bd862.zip |
Add help string to option 'osapi_max_request_body_size'
Fixes bug #1003626
Change-Id: I3b08b813ff2e15a612474113aed43e570335ac9e
-rw-r--r-- | nova/api/sizelimit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/api/sizelimit.py b/nova/api/sizelimit.py index a74a80a98..c434695b0 100644 --- a/nova/api/sizelimit.py +++ b/nova/api/sizelimit.py @@ -31,7 +31,8 @@ from nova import wsgi #default request size is 112k max_request_body_size_opt = cfg.IntOpt('osapi_max_request_body_size', default=114688, - help='') + help='the maximum body size ' + 'per each osapi request(bytes)') FLAGS = flags.FLAGS FLAGS.register_opt(max_request_body_size_opt) |