From bfcda54fa23d3f35115a95afd05f18b3588d6050 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Mon, 3 Dec 2012 16:30:13 -0600 Subject: [PATCH] check_reserved in welcome, thanks Marin --- VERSION | 2 +- applications/welcome/models/db.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 27a95d3e..24afb64b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.2.1 (2012-12-03 16:05:41) stable +Version 2.2.1 (2012-12-03 16:29:26) stable diff --git a/applications/welcome/models/db.py b/applications/welcome/models/db.py index 2cd6638e..38a1b797 100644 --- a/applications/welcome/models/db.py +++ b/applications/welcome/models/db.py @@ -11,7 +11,7 @@ if not request.env.web2py_runtime_gae: ## if NOT running on Google App Engine use SQLite or other DB - db = DAL('sqlite://storage.sqlite') + db = DAL('sqlite://storage.sqlite',pool_size=1,check_reserved=['all']) else: ## connect to Google BigTable (optional 'google:datastore://namespace') db = DAL('google:datastore')