Comment 7 for bug 270792

Revision history for this message
Markus Korn (thekorn) wrote :

I'm sorry, but this still happens for me on staging (added an extract of the traceback):

In [33]: x = launchpad.bugs[1]

In [38]: list(x.messages)
---------------------------------------------------------------------------
<class 'launchpadlib.errors.HTTPError'> Traceback (most recent call last)

[...]
--> 211 raise HTTPError(response, content)
        global HTTPError = <class 'launchpadlib.errors.HTTPError'>
        response = {'status': '503', 'x-lazr-oopsid': 'OOPS-998S71', 'via': '1.1 wildcard.staging.launchpad.net', 'x-powered-by': 'Zope (www.zope.org), Python (www.python.org)', 'content-length': '1280', 'server': 'zope.server.http (HTTP)', 'connection': 'close', 'date': 'Wed, 24 Sep 2008 17:44:45 GMT', 'content-type': 'text/plain'}
        content = '\'SELECT Message.datecreated, Message.distribution, Message.id, Message.owner, Message.parent, Message.raw, Message.rfc822msgid, Message.subject, "_prejoin1".account, "_prejoin1".addressline1, "_prejoin1".addressline2, "_prejoin1".city, "_prejoin1".country, "_prejoin1".creation_comment, "_prejoin1".creation_rationale, "_prejoin1".datecreated, "_prejoin1".defaultmembershipperiod, "_prejoin1".defaultrenewalperiod, "_prejoin1".displayname, "_prejoin1".hide_email_addresses, "_prejoin1".homepage_content, "_prejoin1".icon, "_prejoin1".id, "_prejoin1".logo, "_prejoin1".mailing_list_auto_subscribe_policy, "_prejoin1".merged, "_prejoin1".mugshot, "_prejoin1".name, "_prejoin1".organization, "_prejoin1".personal_standing, "_prejoin1".personal_standing_reason, "_prejoin1".phone, "_prejoin1".postcode, "_prejoin1".province, "_prejoin1".registrant, "_prejoin1".renewal_policy, "_prejoin1".subscriptionpolicy, "_prejoin1".teamdescription, "_prejoin1".teamowner, "_prejoin1".verbose_bugnotifications, "_prejoin1".visibility FROM BugMessage, Message LEFT JOIN Person AS "_prejoin1" ON Message.owner = "_prejoin1".id WHERE BugMessage.bug = %s AND Message.id = BugMessage.message AND (1=1) ORDER BY Message.datecreated, Message.id\', [<storm.variables.IntVariable object at 0x2aaaad811578>]'
    212 return response, content
    213

<class 'launchpadlib.errors.HTTPError'>: HTTP Error 503: Service Unavailable

In [39]:

Markus