Temporarily remove the db pool until we can figure out why they are running out of connections.
This commit is contained in:
parent
b8466169ac
commit
e1a5a3e543
1 changed files with 1 additions and 2 deletions
|
@ -5,7 +5,6 @@ import uuid
|
||||||
from random import SystemRandom
|
from random import SystemRandom
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from peewee import *
|
from peewee import *
|
||||||
from playhouse.pool import PooledMySQLDatabase
|
|
||||||
from sqlalchemy.engine.url import make_url
|
from sqlalchemy.engine.url import make_url
|
||||||
from urlparse import urlparse
|
from urlparse import urlparse
|
||||||
|
|
||||||
|
@ -16,7 +15,7 @@ logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
SCHEME_DRIVERS = {
|
SCHEME_DRIVERS = {
|
||||||
'mysql': PooledMySQLDatabase,
|
'mysql': MySQLDatabase,
|
||||||
'sqlite': SqliteDatabase,
|
'sqlite': SqliteDatabase,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue