Skip to content
Snippets Groups Projects
Commit f9902707 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8887: Various minor fixes

parent 91f019bf
No related branches found
No related tags found
No related merge requests found
# $Id: CMakeLists.txt 32341 2015-08-28 11:59:26Z schaap $
lofar_add_bin_scripts(addtoQPIDDB.py
cep4_config.sh
populateDB.sh
compareQPIDwithDB.py
configQPIDfromDB.py
gatherfrombrokers.sh
......
......@@ -20,6 +20,7 @@ if __name__ == '__main__':
if (len(sys.argv)<2):
parser.print_help()
sys.exit(0)
dbcreds = dbcredentials.parse_options(options)
QPIDinfra = qpidinfra(dbcreds)
......
......@@ -28,7 +28,7 @@ class psqlQPIDDB:
if self.conn and self.conn.status==1:
return
self.conn = pg.connect(**self.dbcreds.pg_connect_options())
self.conn = pg.connect(**self.dbcreds.psycopg2_connect_options())
if self.conn and self.conn.status==1:
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment