diff --git a/VERSION b/VERSION index 8462ad35..c89b58c8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 1.99.7 (2012-04-15 09:55:17) dev +Version 1.99.7 (2012-04-16 08:15:36) dev diff --git a/anyserver.py b/anyserver.py index 263afc0a..5fee6191 100644 --- a/anyserver.py +++ b/anyserver.py @@ -124,7 +124,7 @@ class Servers: app.run() @staticmethod - def gnuicorn(app,address, **options): + def gunicorn(app,address, **options): import gunicorn.arbiter gunicorn.arbiter.Arbiter(address, 4, app).run() diff --git a/gluon/dal.py b/gluon/dal.py index c8285f89..9e9d09ea 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -472,7 +472,7 @@ class ConnectionPool(object): def reconnect(self): """ allows a thread to re-connect to server or re-pool """ - self.close_all_instances('commit') + self.close_all_instances(False) self.pool_connection(self._connection_function) self.after_connection()