[Collab-qa-commits] r2023 - udd/web/cgi-bin

Stefano Rivera stefanor at alioth.debian.org
Thu Sep 15 17:10:39 UTC 2011


Author: stefanor
Date: 2011-09-15 17:10:39 +0000 (Thu, 15 Sep 2011)
New Revision: 2023

Modified:
   udd/web/cgi-bin/bug-blockers.cgi
Log:
bug-blockers.cgi: Login as guest, service=udd requires authentication

Modified: udd/web/cgi-bin/bug-blockers.cgi
===================================================================
--- udd/web/cgi-bin/bug-blockers.cgi	2011-09-12 00:21:11 UTC (rev 2022)
+++ udd/web/cgi-bin/bug-blockers.cgi	2011-09-15 17:10:39 UTC (rev 2023)
@@ -33,7 +33,8 @@
 
 
 def find_blockers(bug):
-    conn = psycopg2.connect("service=udd")
+    conn = psycopg2.connect(database='udd', port=5441, host='localhost',
+                            user='guest')
     cur = conn.cursor()
     cur.execute("""
     SELECT bugs.id, bugs.source, bugs.severity, bugs.title, bugs.last_modified,




More information about the Collab-qa-commits mailing list