[Collab-qa-commits] r1901 - udd/udd

Lucas Nussbaum lucas at alioth.debian.org
Wed Jan 26 19:31:02 UTC 2011


Author: lucas
Date: 2011-01-26 19:30:58 +0000 (Wed, 26 Jan 2011)
New Revision: 1901

Modified:
   udd/udd/ubuntu_bugs_gatherer.py
Log:
use launchpad.net, not edge.launchpad.net

Modified: udd/udd/ubuntu_bugs_gatherer.py
===================================================================
--- udd/udd/ubuntu_bugs_gatherer.py	2011-01-26 19:30:14 UTC (rev 1900)
+++ udd/udd/ubuntu_bugs_gatherer.py	2011-01-26 19:30:58 UTC (rev 1901)
@@ -94,7 +94,7 @@
   # "worker". Fetch a specific bug as text from launchpad.
   def bugfetcher(self, hq, dq):
     while True:
-      conn = httplib.HTTPSConnection('edge.launchpad.net')
+      conn = httplib.HTTPSConnection('launchpad.net')
       ok = True
       b = None
       while ok:
@@ -107,7 +107,7 @@
           _exit(1)
 
         try:
-          conn.request('GET', 'https://edge.launchpad.net/bugs/' + str(b) + '/+text')
+          conn.request('GET', 'https://launchpad.net/bugs/' + str(b) + '/+text')
           r = conn.getresponse()
           if r.status == 200:
             data = r.read()




More information about the Collab-qa-commits mailing list