From 47890a8454a32ed032e98f3edb5917ffa44a2b11 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sun, 23 Jun 2013 00:23:33 -0500 Subject: [PATCH] fixed issue 1552:Missing ssl_ca_certificate option in HttpServer instantiation in we2pyDialog, thanks Jamie Sabin --- VERSION | 2 +- gluon/widget.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 090f06f6..7dd06f10 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.5.1-stable+timestamp.2013.06.23.00.14.48 +Version 2.5.1-stable+timestamp.2013.06.23.00.22.51 diff --git a/gluon/widget.py b/gluon/widget.py index faffc653..cbd0a3f7 100644 --- a/gluon/widget.py +++ b/gluon/widget.py @@ -507,6 +507,7 @@ class web2pyDialog(object): profiler_filename=options.profiler_filename, ssl_certificate=options.ssl_certificate, ssl_private_key=options.ssl_private_key, + ssl_ca_certificate=options.ssl_ca_certificate, min_threads=options.minthreads, max_threads=options.maxthreads, server_name=options.server_name,