Temporarily remove the db pool until we can figure out why they are running out of connections.

This commit is contained in:
Jake Moshenko 2014-05-19 17:14:23 -04:00
parent b8466169ac
commit e1a5a3e543

View file

@ -5,7 +5,6 @@ import uuid
from random import SystemRandom
from datetime import datetime
from peewee import *
from playhouse.pool import PooledMySQLDatabase
from sqlalchemy.engine.url import make_url
from urlparse import urlparse
@ -16,7 +15,7 @@ logger = logging.getLogger(__name__)
SCHEME_DRIVERS = {
'mysql': PooledMySQLDatabase,
'mysql': MySQLDatabase,
'sqlite': SqliteDatabase,
}