=== jelmer_ is now known as jelmer === vidplace7_ is now known as vidplace7 === Ursinha is now known as Ursinha-brb === Ursinha-brb is now known as Ursinha === Guest74903 is now known as Pici [19:02] Does anybody here have sufficient rights to change a bug report from private to public? I want bug 478097 changed back to public. It must have been in error that it was made private. [19:02] Error: Launchpad bug 478097 could not be found [21:28] Hi all - I'm having troubles loggin into lp - I authenticate without a problem but I then either get to the homepage or a 'Your login was unsuccessful' page with the error "No matching endpoint found after discovering https://login.launchpad.net/+id/XBbTYWs" [21:30] Bodsda: Is the problem repeatable? [21:30] wgrant: yes [21:31] Bodsda: What's the URL of the page with the error message? [21:32] wgrant: https://launchpad.net/+openid-callback?starting_url=https%3A%2F%2Fanswers.launchpad.net%2Fquestions%2F%2Bquestions%3Ffield.actions.search%3DFind%2520Answers%26field.sort%3DRELEVANCY%26field.scope.target%3D%26field.status%3DOPEN%26field.status%3DSOLVED%26field.status%3DANSWERED%26field.status%3DNEEDSINFO%26field.search_text%3DNo%2520matching%2520endpoint%2520found%2520after%2520discovering%2520%26field.scope%3Dall&janrain_nonce=2014-12-02T21%3A3 [21:32] whoops [21:35] Hmmm. [21:36] hmm indeed [21:36] Bodsda: Is the problem reproducible on https://qastaging.launchpad.net/+login or https://dogfood.paddev.net/+login? They both use the same SSO site. [21:36] beuno: Was it throwing errors for a while that your squid might have cached? [21:36] hmmm [21:36] wgrant: yes, it fails for both of thos as well [21:36] wgrant, I hope we're not caching errors [21:37] Bodsda: Alright, let me add some debugging. [21:37] brb gotta grab some caffeine [21:37] Bodsda, can you control + f5 that page? [21:37] That's not going to help anything. [21:38] It was his first request to dogfood.paddev.net ever. [21:40] right [21:40] so we are in the middle of some infrastructure change [21:40] this seems to be related [21:40] and happening to several folks [21:40] leave it with me [21:41] Bodsda, trying several times will get you in eventually [21:41] if you're in a hurry [21:42] wgrant: is the SSO site used by launchpad the same as the standard Ubuntu SSO that the forums would also use, or is it different? [21:43] (or to anyone even) [21:43] teward: The same, just on a different domain. [21:43] wgrant: but the same underlying auth mechanism? [21:43] Same everything, including database. [21:43] same code. different css/images [21:43] Not any more. [21:43] All the same. [21:44] oh right [21:44] so if there's issues that people are having with logins on Launchpad, it stands to reason similar login issues would be seen on other Ubuntu sites that use the same auth system? [21:45] Not so much "would be" as "might be" [21:45] If another site using SSO is seeing issues, they are probably not unrelated. [21:45] Bodsda: When you return, please retry logging into dogfood.paddev.net [21:46] Aha [21:46] wgrant: yeah they're seeing a blank whitescreen on sso on the forums, saw the login issue here was wondering if its related [21:46] Hm, did those two attempts fail? [21:46] wgrant: beuno: still the same problem I'm afraid [21:46] Weird, we're getting endpoints back. [21:46] new one [21:46] service temporarily unavailable [21:47] That was me :) [21:47] Bodsda: Try now? Just once. [21:48] Thanks. [21:48] wgrant: its thinking about it this time [21:49] beuno: 'local_id mismatch. Expected https://login.launchpad.net/+id/XBbTYWs, got http://login.launchpad.net/+id/XBbTYWs' [21:49] Different URL scheme. [21:52] wgrant: finally error'd - http://paste.ubuntu.com/9350059/ [21:52] wgrant: need to switch comps - I'll be back in 2 mins [21:55] wgrant: back [21:55] Bodsda: We've identified the problem and it's being fixed. Thanks for your help, should be fixed for you soon. [21:55] wgrant: cool, thanks - what was the issue? [22:14] Bodsda: Should be fixed now. Can you try again on launchpad.net? [22:16] wgrant: still a no go I'm afraid [22:17] Bodsda: Can you try a different browser, to rule out caching issues? [22:18] wgrant: not a caching problem - first launchpad login attempt from this laptop [22:20] wgrant: tested with IE and Firefox [22:25] Bodsda: Hrm. Can you try https://dogfood.paddev.net/+login again? [22:26] wgrant: same issue [22:27] Right, found the problematic squid. Thanks. [22:27] Fixing now. [22:38] bad squiddie! [22:42] oh! a lifeless! [22:48] bon jorno beuno [22:59] wgrant: got a successful login to dogfood! :) [23:00] wgrant: and to launchpad -- thanks! [23:00] Bodsda: Excellent. Thanks for confirming. === beuno_ is now known as beuno [23:11] Hey is anyone here familiar with python-launchpadlib? [23:15] sigmavirus24: Sure, ask your question and someone will answer if they know. [23:17] I may have just figured it out actually =P [23:19] Nope. So I'm trying to create a bug on a project (that has bugs) but after I login and have a Launchpad object, lp.bugs.createBug(...) doesn't work because every value I try for target is wrong. The bug_target docs don't describe anything other than what it is so I'm lost as to how to get one of those [23:20] sigmavirus24: What are you using? The target should be a product, distribution or distribution_source_package object. [23:20] I tried URLs, project name and the project I get when I use lp.projects.search(text='...') [23:21] Let me get a distribution and try that [23:21] sigmavirus24: lp.projects.search returns a collection of projects, not a single one. [23:21] right, I picked the right one out of it [23:21] You want eg. lp.projects['foo'], or lp.distributions['foo'], or lp.distributions['foo'].getSourcePackage(name='bar') [23:22] and just pass the result of lp.distributions['foo'] in for target? [23:22] Right. [23:24] I'm still getting a 404 [23:24] What's the exact input and output? [23:25] let me stick this in a paste somewhere quick [23:28] https://gist.github.com/sigmavirus24/e8008ccc57c987aaea6c [23:36] sigmavirus24: How are you creating the lp object? What is d? [23:37] lp = launchpadlib.launchpad.Launchpad.login_with('libtoken', 'production') and d = lp.distributions['project-name'] [23:37] I have to run though and I'll probably work on this later [23:37] Hm, should you should really be testing scripts like this on staging, probably :) [23:37] lp.distributions['project-name'] is weird -- a project is not a distribution. [23:39] wgrant: everytime I tried to make a staging account I got a 500 error [23:39] so I gave up on that [23:39] I waited a good 5-10 min between each attempt [23:39] so I wasted way too much time on that already [23:40] That's a problem that can be fixed if we're given details. [23:40] sigmavirus24: What's the project you're using? [23:41] The only way this makes sense is if the bug you're reporting is private by default, and you've not authorised your launchpadlib token to access private data. [23:41] The default privacy depends on the project's configuration. [23:42] There is someone messing up bug reports. (see my post from earlier today). He just did another one, but that one we were able to restore. It is not clear to us how to stop him. [23:42] Reference: https://launchpad.net/~danielcandido82 [23:42] Can he be baneed? [23:42] Can he be banned? [23:43] dsmythies: Done. [23:43] Thanks very much.