From dfec46ac8e4cba23da842698c2bc746c03994afe Mon Sep 17 00:00:00 2001 From: Burt Holzman Date: Thu, 24 Jan 2013 00:24:09 -0600 Subject: Increase maximum URI size for EC2 API to 16k The EC2 API supports both HTTP GET and POST agnostically. It also supports user-data of 16k -- meaning that client tools could generate 16k URIs. The WSGI default limit is 8k; this raises it. Fixes bug 1098646. Change-Id: Idec460d88b2affab970c9d9f39fa61295db035c5 --- bin/nova-api-ec2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/nova-api-ec2') diff --git a/bin/nova-api-ec2 b/bin/nova-api-ec2 index c7b08845d..d1b3d45ea 100755 --- a/bin/nova-api-ec2 +++ b/bin/nova-api-ec2 @@ -41,6 +41,6 @@ if __name__ == '__main__': config.parse_args(sys.argv) logging.setup("nova") utils.monkey_patch() - server = service.WSGIService('ec2') + server = service.WSGIService('ec2', max_url_len=16384) service.serve(server, workers=server.workers) service.wait() -- cgit