diff --git a/bin/sql_db.py b/bin/sql_db.py index 6c2c17beeb3..feafc72d6d8 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -290,7 +290,11 @@ class ConnectionPool(object): # note: this code is called only if the for loop has completed (no break) raise PoolError('The Connection Pool Is Full') - result = psycopg2.connect(dsn=dsn, connection_factory=PsycoConnection) + try: + result = psycopg2.connect(dsn=dsn, connection_factory=PsycoConnection) + except psycopg2.Error, e: + self.__logger.log(logging.ERROR, 'connect:%s', e) + raise self._connections.append((result, True)) self._debug('Create new connection') return result