removed check for missing driver

This commit is contained in:
mdipierro
2013-06-27 07:21:40 -05:00
parent 768b49224c
commit 81fa9b1984
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.6.0-development+timestamp.2013.06.27.01.50.11
Version 2.6.0-development+timestamp.2013.06.27.07.20.48
+3 -3
View File
@@ -594,9 +594,9 @@ class ConnectionPool(object):
if f is None:
f = self.connector
if not hasattr(self, "driver") or self.driver is None:
LOGGER.debug("Skipping connection since there's no driver")
return
# if not hasattr(self, "driver") or self.driver is None:
# LOGGER.debug("Skipping connection since there's no driver")
# return
if not self.pool_size:
self.connection = f()