From db0f2836df84f6c2d3098b7a87896e7a276bd862 Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Thu, 24 May 2012 04:02:23 +0800 Subject: Add help string to option 'osapi_max_request_body_size' Fixes bug #1003626 Change-Id: I3b08b813ff2e15a612474113aed43e570335ac9e --- nova/api/sizelimit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit