gnuicorn -> gunicorn

This commit is contained in:
Massimo Di Pierro
2012-04-16 08:16:38 -05:00
parent 21a659ef85
commit 73184a1efd
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.7 (2012-04-15 09:55:17) dev
Version 1.99.7 (2012-04-16 08:15:36) dev
+1 -1
View File
@@ -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()
+1 -1
View File
@@ -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()