Autocommit support for psycopg2 < 2.4.2
This commit is contained in:
parent
dfce4a20a1
commit
db957df5af
1 changed files with 6 additions and 1 deletions
|
@ -89,7 +89,12 @@ def main():
|
||||||
try:
|
try:
|
||||||
db_connection = psycopg2.connect(database="template1", **kw)
|
db_connection = psycopg2.connect(database="template1", **kw)
|
||||||
# Enable autocommit so we can create databases
|
# Enable autocommit so we can create databases
|
||||||
|
if psycopg2.__version__ >= '2.4.2':
|
||||||
db_connection.autocommit = True
|
db_connection.autocommit = True
|
||||||
|
else:
|
||||||
|
db_connection.set_isolation_level(psycopg2
|
||||||
|
.extensions
|
||||||
|
.ISOLATION_LEVEL_AUTOCOMMIT)
|
||||||
cursor = db_connection.cursor()
|
cursor = db_connection.cursor()
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
module.fail_json(msg="unable to connect to database: %s" % e)
|
module.fail_json(msg="unable to connect to database: %s" % e)
|
||||||
|
|
Loading…
Reference in a new issue