=== cinerama_ is now known as cinerama | ||
chrisvj | when i try to push a project to launchpad, I get: bzr: ERROR: Unable to connect to SSH host bazaar.launchpad.net; [Error 2] The system cannot find the file specified can anyone help me? | 00:58 |
---|---|---|
lifeless | does 'host bazaar.launchpad.net' return an ip address? | 00:58 |
chrisvj | host? i tried that just in cmd and bzr host, neither works | 01:00 |
mwhudson | chrisvj: can you bzr push to any other hose? | 01:01 |
mwhudson | *host | 01:01 |
chrisvj | havent tried, any other hosts i could push to? | 01:01 |
spiv | chrisvj: 'host' is a common command on *nix, not sure what the equivalent is on windows | 01:01 |
chrisvj | ill look it up | 01:02 |
chrisvj | ive used it before but cant remember it | 01:02 |
StevenK | nslookup? | 01:02 |
chrisvj | tracert | 01:05 |
chrisvj | it ended with "general failure", last ip returned was 10.22.224.1 | 01:06 |
spiv | That's a really screwy error code to get from a hostname lookup | 01:06 |
chrisvj | spiv, might be endless redirects | 01:06 |
spiv | tracert does something significantly different (and more complex) than just resolving a host name | 01:07 |
spiv | What happens if you try "telnet bazaar.launchpad.net 22" ? | 01:07 |
chrisvj | ah, nslookup also works | 01:08 |
chrisvj | 91.189.90.11 is what nslookup gave me | 01:08 |
chrisvj | spiv: unrecognized command | 01:09 |
chrisvj | going to bazaar.launchpad.net just redirects me to launchpad.net | 01:11 |
spiv | Wow, telnet.exe isn't a standard part of Windows any more? Time marches on... | 01:11 |
chrisvj | the command im using is bzr push lp:~chrisvj/+junk/game | 01:11 |
spiv | Still, it appears you can resolve the hostname correctly judging by the nslookup result and that going to http://bazaar.launchpad.net/ redirects you as it supposed to | 01:12 |
spiv | So my guess is you have a firewall or similar interfering with access to port 22 | 01:12 |
chrisvj | i had told windows firewall not to block bazaar, ill check port 22 | 01:13 |
spiv | Your bzr command is fine. | 01:13 |
chrisvj | added an exception for port 22 to allow it through, still not working | 01:14 |
spiv | chrisvj: oh, maybe it's something screwy with your local SSH client setup | 01:15 |
chrisvj | pageant | 01:15 |
spiv | chrisvj: run 'bzr version' to locate your 'Bazaar log file' | 01:15 |
spiv | And pastebin the parts from the most recent command | 01:16 |
chrisvj | http://pastebin.com/RyKKPFBd | 01:18 |
spiv | This might be https://bugs.launchpad.net/bzr/+bug/553434 or closely related | 01:18 |
ubot5 | Ubuntu bug 553434 in Bazaar "Confusing error with BZR_SSH=plink set when plink not installed: WindowsError: [Error 2] The system cannot find the file specified" [Low,Confirmed] | 01:18 |
chrisvj | ok so i need to install plink? | 01:18 |
spiv | Huh, that log doesn't say which SSH implemenation it's trying, odd. | 01:19 |
spiv | chrisvj: not necessarily (plink is just one of the supported ways) | 01:20 |
chrisvj | oh | 01:21 |
spiv | Do you have BZR_SSH set in your environment variables? | 01:22 |
chrisvj | yep | 01:22 |
chrisvj | it was set for plink, deleted it | 01:22 |
chrisvj | bzr: ERROR: Connection error: Unable to authenticate to SSH host as chrisvj@bazaar.launchpad.net supported auth types: ['publickey'] | 01:22 |
chrisvj | so that was the problem | 01:22 |
spiv | Ok, local misconfiguration, which then triggered bug 553434. | 01:23 |
ubot5 | Launchpad bug 553434 in Bazaar "Confusing error with BZR_SSH=plink set when plink not installed: WindowsError: [Error 2] The system cannot find the file specified" [Low,Confirmed] https://launchpad.net/bugs/553434 | 01:23 |
chrisvj | is ubot5 a bot? | 01:24 |
spiv | Yes. | 01:25 |
chrisvj | ok, so now what? | 01:25 |
chrisvj | ill generate a key | 01:26 |
spiv | chrisvj: https://help.launchpad.net/YourAccount/CreatingAnSSHKeyPair | 01:26 |
chrisvj | do i need to do Cygwin/Windows (PuTTY)? | 01:29 |
chrisvj | yay its working! tyvm | 01:30 |
chrisvj | also, is anyone interested in working on a mmorpg? need programmer, 2d artists, 3d modelists | 01:35 |
spiv | chrisvj: glad we help! | 01:36 |
chrisvj | everytime i commit a change, do i have to push it again? | 01:37 |
spiv | Yes (or use 'bzr bind' or similar to convert your local branch to a checkout of the remote branch) | 01:38 |
chrisvj | which would be better? | 01:40 |
chrisvj | spiv? | 01:43 |
spiv | chrisvj: It depends :) | 01:44 |
spiv | Mainly on which way of working you prefer | 01:44 |
chrisvj | on? | 01:44 |
chrisvj | oh | 01:44 |
chrisvj | what is the difference between a checkout and a branch | 01:44 |
StevenK | A checkout is bound to the remote branch, and a branch is local | 01:48 |
spiv | Just this one point, basically: a checkout is tied to a particular branch, so it can't have independent commits | 01:48 |
chrisvj | ok | 01:49 |
spiv | See also http://doc.bazaar.canonical.com/bzr.dev/en/index.html | 01:49 |
chrisvj | i pushed to lp:~chrisvj/spirit.sword/trunk like it said on the project code page, but it put it on my page, how do i push it to the project? | 01:50 |
chrisvj | ty | 01:50 |
chrisvj | so with a checkout, a commit automatically pushes? | 01:50 |
spiv | Yes. | 01:51 |
spiv | You appear to have created a lp:spirit.sword branch already (via the web UI?), so just push directly to that. | 01:52 |
chrisvj | ok | 01:52 |
spiv | (or perhaps delete it and mark lp:~chrisvj/spirit.sword/trunk as the development focus. The end result will be the same) | 01:53 |
chrisvj | bzr: ERROR: At lp:spirit.sword you have a valid .bzr control directory, but not a branch or repository. This is an unsupported configuration. Please move the target directory out of the way and try again. | 01:53 |
spiv | Ugh, that's the problem with the silly "register branch" link in the web ui :( | 01:54 |
spiv | Add --use-existing-dir to the push command the first time. | 01:54 |
chrisvj | i did | 01:54 |
spiv | Oh, blah. | 01:54 |
chrisvj | i have the branch "trunk" created | 01:54 |
chrisvj | should i do lp:spirit.sword/trunk | 01:54 |
spiv | Simplest is to just delete the trunk-1 branch (which is currently where the lp:spirit.sword alias is pointing to) | 01:55 |
poolie_ | hi spiv | 01:55 |
=== poolie_ is now known as poolie | ||
chrisvj | ok | 01:55 |
chrisvj | You cannot delete a series that is the focus of development. Make another series the focus of development before deleting this one. | 01:55 |
spiv | And make point the lp:spirit.sword alias to the branch you already pushed | 01:56 |
spiv | You don't need to delete the series | 01:56 |
chrisvj | i clicked on delete branch | 01:56 |
spiv | chrisvj: https://launchpad.net/spirit.sword/trunk/+setbranch | 01:58 |
spiv | Hi poolie | 01:58 |
chrisvj | ok ty | 01:59 |
chrisvj | spiv, how do you know if the bind worked? | 02:12 |
spiv | 'bzr info' | 02:13 |
chrisvj | ty | 02:13 |
chrisvj | ok it worked | 02:14 |
=== Naresh`` is now known as Naresh | ||
shadeslayer | hi, when i try to access my sftp space on people.ubuntu.com, i get a public key error, could someone try and sync the keys? ( lp user : rohangarg) | 06:40 |
shadeslayer | i had changed my keys a couple of months back | 06:41 |
wgrant | shadeslayer: #canonical-sysadmin might be more help. | 06:48 |
shadeslayer | alright | 06:49 |
wgrant | shadeslayer: It syncs keys from LP, but we don't run it. | 06:49 |
shadeslayer | ah ok | 06:49 |
thomi | Hi, my last recipe build failed with the error "bzr: ERROR: http://bazaar.launchpad.net/~sloecode/sloecode/trunk/.bzr/repository/packs/b2010b3c109a515dab5bdcf8dcb09d04.pack is redirected to https://launchpad.net" - is this a bug? I haven't seen it before... | 07:06 |
spiv | thomi: it is a bug, a transient one | 07:08 |
spiv | thomi: a retry of the same build will probably work | 07:08 |
thomi | spiv: thanks - is it worth reporting? I didn't see it in the launchpad bug list | 07:08 |
spiv | It definitely should have a bug report | 07:09 |
thomi | thanks | 07:09 |
spiv | I don't know if it already does, although I know it's already known :) | 07:09 |
thomi | Reported bug #806343 | 07:11 |
ubot5 | Launchpad bug 806343 in Launchpad itself "recipe build failed with bzr error" [Undecided,New] https://launchpad.net/bugs/806343 | 07:11 |
thomi | oooh, that's clever :) | 07:12 |
shadeslayer | is there a procedure for removing a launchpad user account? | 08:00 |
lifeless | shadeslayer: you can disable it in the UI | 08:05 |
shadeslayer | lifeless: not my account :) | 08:05 |
shadeslayer | we need to retire https://launchpad.net/~project-neon because we now have https://launchpad.net/~neon | 08:06 |
=== adeuring changed the topic of #launchpad to: https://launchpad.net/ | Help contact: adeuring | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | ||
bigjools | shadeslayer: I can disabled it, please file a question to verify authenticity | 08:15 |
bigjools | disable* | 08:15 |
shadeslayer | ok | 08:16 |
shadeslayer | bigjools: which component do i file the question under btw? | 08:16 |
bigjools | shadeslayer: launchpad | 08:16 |
shadeslayer | ok | 08:16 |
shadeslayer | bigjools: https://answers.launchpad.net/launchpad/+question/163909 | 08:20 |
bigjools | shadeslayer: I thought it was a team you're in but it's just a regular user. Can you post a question from that user? | 08:22 |
shadeslayer | sure | 08:23 |
bigjools | thanks | 08:24 |
shadeslayer | bigjools: ah, can't be done, we have lost the password for that account | 08:29 |
bigjools | oh dear | 08:29 |
shadeslayer | bigjools: i have the person in charge for that account online tho | 08:30 |
bigjools | shadeslayer: if I email the contact listed and get a reply, that'll do for me | 08:30 |
bigjools | ok? | 08:30 |
shadeslayer | sure | 08:30 |
bigjools | shadeslayer: sent! | 08:32 |
shadeslayer | :) | 08:32 |
shadeslayer | bigjools: who's the email contact anyways? | 08:32 |
bigjools | nightly@ | 08:33 |
shadeslayer | apachelogger: do you have the password for that ^ | 08:33 |
shadeslayer | or did you lose that as well? :P | 08:33 |
apachelogger | nightly@ what? | 08:36 |
soren | soyuz/ppa question: I want to upload a package to multiple series in the same ppa. If I want to only upload the orig.tar.gz once, how can I do that? I suspect that I have to do an upload with it included, then wait for it to be published, and then upload the rest.. Is that actually true? | 08:37 |
bigjools | soren: do you need it rebuilt in each series? | 08:42 |
bigjools | you should not have to wait for publishing between uploads BTW | 08:43 |
soren | bigjools: Yes, I do need it built everywhere. | 08:44 |
soren | bigjools: Oh, no waiting required? | 08:45 |
bigjools | I would hope not :) | 08:45 |
soren | bigjools: Just as long as the first upload is the one with the tarball? | 08:45 |
bigjools | yes | 08:45 |
soren | Great. | 08:45 |
apachelogger | shadeslayer, bigjools: not that I'd follow but getamarok.com seems rather expired | 08:45 |
soren | bigjools: Awesome, thanks. | 08:46 |
=== kostja_osipov1 is now known as kostja_osipov | ||
=== jtv is now known as jtv-eat | ||
apw | can anyone tell me why bug #806375 which is New in Linux does not show up on searches for its title in linux | 10:12 |
ubot5 | Launchpad bug 806375 in linux (Ubuntu Hardy) "CVE-2011-1770" [Undecided,New] https://launchpad.net/bugs/806375 | 10:12 |
apw | (i wonder if it is because it is nominated for oneiric) | 10:12 |
lifeless | no, its the hypens | 10:13 |
apw | i can't search for words with hypens ? or they have meaning ? | 10:14 |
lifeless | we haven't analysed it all | 10:14 |
lifeless | uhm | 10:14 |
* apw wants to cry | 10:15 | |
lifeless | bug 2753 bug 29227 bug 612384 | 10:15 |
ubot5 | Launchpad bug 2753 in Launchpad itself "Search tokenisation fails with documents like "... <div> ..." or " ... Foo.bar" - cannot search for them" [High,Triaged] https://launchpad.net/bugs/2753 | 10:15 |
ubot5 | Launchpad bug 29227 in Launchpad itself "Full text search only understands whitespace as a word seperator" [High,Triaged] https://launchpad.net/bugs/29227 | 10:15 |
ubot5 | Launchpad bug 612384 in Launchpad itself "search needs overhaul/new engine" [High,Triaged] https://launchpad.net/bugs/612384 | 10:15 |
lifeless | bug 768685 | 10:15 |
ubot5 | Launchpad bug 768685 in Launchpad itself "searching for exact title prefix gets no matches (text search issue)" [High,Triaged] https://launchpad.net/bugs/768685 | 10:15 |
lifeless | bug 29713 | 10:16 |
ubot5 | Launchpad bug 29713 in Launchpad itself "bug search fails to find results despite exact search string being in bug titles" [Medium,Triaged] https://launchpad.net/bugs/29713 | 10:16 |
bil21al | my bugs and answers are not shown in the right side of my account???what i do??? | 10:16 |
lifeless | apw: I think that that last one is the one affecting you | 10:18 |
lifeless | apw: we don't know the cause yet (and most of the work in fixing it will be determining the cause) | 10:18 |
lifeless | apw: what i do know i that if you were to say 'cve 2011 1770' and search on that, i suspect it would work | 10:18 |
ubot5 | Integer underflow in the dccp_parse_options function (net/dccp/options.c) in the Linux kernel before 2.6.33.14 allows remote attackers to cause a denial of service via a Datagram Congestion Control Protocol (DCCP) packet with an invalid feature options length, which triggers a buffer over-read. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1770) | 10:18 |
lifeless | bil21al: sorry, what are you saying? | 10:19 |
wgrant | bil21al: Use the tabs at the top of the page. | 10:19 |
wgrant | bil21al: The side panel did exactly the same as those, so it has been removed. | 10:19 |
bil21al | is it removed by launchpad ??? wgrant; | 10:21 |
wgrant | bil21al: Yes. The links along the top of the page do what you need. | 10:21 |
bil21al | ok wgrant; thankx | 10:22 |
apw | lifeless, nope that doesn't work either | 10:22 |
apw | the only substring which returns any matches at all, is 1070 which takes me to bug 1070 | 10:22 |
ubot5 | Launchpad bug 1070 in Launchpad itself "Need default assignees for upstreams, sourcepackages and distributions" [Medium,Invalid] https://launchpad.net/bugs/1070 | 10:22 |
lifeless | apw: you haven't changed the bug title | 10:22 |
lifeless | apw: try now | 10:23 |
apw | changed it? not since it was created no | 10:23 |
apw | seems the same | 10:23 |
lifeless | https://bugs.launchpad.net/ubuntu/+source/linux?field.searchtext=cve+2011+1770 | 10:23 |
apw | now damned google analytics is hanging ARRRG | 10:24 |
* apw is so just going back to bed | 10:24 | |
lifeless | my point was that cve-thing-thing messes up something in one of the layers | 10:24 |
lifeless | cve thing thing does not mess anything up | 10:24 |
apw | how the heck does your search fidn it | 10:24 |
lifeless | I changed the title | 10:24 |
lifeless | removed the hyphens | 10:24 |
apw | oh | 10:25 |
* apw cries some more | 10:25 | |
lifeless | yeah | 10:25 |
lifeless | this is a frustrating bug | 10:25 |
* apw wonders how this sort of thing ever gets passed our much vaugted integration test suite | 10:25 | |
lifeless | a test for this would fail :) | 10:26 |
lifeless | its not a regression | 10:26 |
lifeless | our text search has never been great; I have a big honking TODO to fix that | 10:26 |
wgrant | But this isn't exactly a common or obvious case. | 10:26 |
wgrant | So it is untested. | 10:26 |
lifeless | apw: did you want the bug to be public ? | 10:29 |
apw | lifeless, yep, its not an embargoed cve so its public knowledge | 10:39 |
apw | and if we could find it it might even get fixed | 10:39 |
lifeless | :< | 10:40 |
apw | i should have realised moving cve work into launchpad was going to be a disaster | 10:40 |
apw | but i shall let the security team lean on you when they find out we've lost half their bugs | 10:40 |
=== jtv-eat is now known as jtv | ||
lifeless | apw: heh, sure. | 11:05 |
lifeless | apw: the escalation process (grab bryce) may help here | 11:05 |
jtv | ScottK: I was told you'd be interested — there were some timeouts on the +queue page (at least on dogfood/staging) when you selected queues other than New. Should be better now, so if you were avoiding using that, you may want to change your habits. :) | 11:07 |
bigjools | shadeslayer: still there? | 11:43 |
shadeslayer | yes | 11:45 |
shadeslayer | bigjools: ssup? :) | 11:45 |
bigjools | shadeslayer: ok I tried to email nightly(at)getamarok.com but it bounced | 11:45 |
bigjools | shadeslayer: and you guys say you don't have the password any more | 11:45 |
shadeslayer | yes | 11:45 |
bigjools | so I might as well disable it now | 11:45 |
shadeslayer | thanks! :D | 11:46 |
bigjools | shadeslayer: done | 11:47 |
shadeslayer | :) | 11:49 |
bernt1 | Does anyone know about sthis (launchpad-login seems to be ok): | 12:00 |
bernt1 | bzr: ERROR: Cannot lock LockDir(lp-66324304:///%2Bbranch/launchpad/.bzr/branchlock): Transport operation not possible: readonly transport | 12:00 |
=== matsubara-afk is now known as matsubara | ||
wgrant | bernt1: You are trying to push to lp:launchpad, which you don't have write access to. | 12:16 |
bernt1 | I've had write-access for a couple of years. What has changed, and where? | 12:17 |
bernt1 | wgrant: Ahhhhh typo..... arrghhhh | 12:19 |
* bernt1 blushing | 12:19 | |
wgrant | I was about to say. There is only one account with write access to lp:launchpad, and it's a robot. | 12:19 |
bernt1 | wgrant: I sincerely hope it's that way, yes :-) | 12:19 |
matsubara | adeuring, avaliable for a review? | 13:09 |
adeuring | matsubara: sure | 13:09 |
matsubara | adeuring, https://code.launchpad.net/~matsubara/launchpad/39605-bugtask-tooltip/+merge/66928 | 13:09 |
matsubara | thanks! | 13:09 |
matsubara | I had a test failure on that branch which I trying to sort out. | 13:10 |
matsubara | s/I/I'm / | 13:10 |
ScottK | jtv: Thanks. | 13:25 |
=== sidnei-away is now known as sidnei | ||
deryck | adeuring, do you mind continuing IRC duties until the top of the next hour, since I'm switching locations here shortly? | 14:13 |
adeuring | deryck: sure, no problem | 14:13 |
deryck | adeuring, great, thanks! | 14:13 |
adeuring | matsubara: review sent | 14:47 |
matsubara | danke adeuring | 14:47 |
adeuring | matsubara: maybe the failure you noticed fixes already my last issue ;)? | 14:50 |
adeuring | s/failure/test failure/ | 14:50 |
matsubara | adeuring, yep, I got some advice from stub and wgrant to make the page issue less queries. I'll change that and keep your suggestions in mind as well. I'll resubmit once I have something working. | 14:51 |
adeuring | matsubara: cool, thanks! My suggestion is quite "cheap", maybe wgrant or stub had better proposals | 14:52 |
deryck | adeuring, I can take IRC now. Thanks, again! | 15:00 |
=== deryck changed the topic of #launchpad to: https://launchpad.net/ | Help contact: deryck | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | ||
adeuring | deryck: ok, thanks | 15:00 |
mhall119 | lifeless: ping | 15:04 |
=== med_out is now known as medberry | ||
idnar | if I create a new project and start filing new bugs in launchpad, is that going to make it difficult to do an import from an existing bug tracker later on? | 15:49 |
maxb | I'm not an expert, but I think that shouldn't cause problems. | 15:51 |
=== medberry is now known as med_out | ||
mounir | James_w: anyone: Does the project maintainer in Launchpad has anything todo with code maintainership hosted by Launchpad? or these are totally separate | 15:57 |
james_w | mounir, they are separate | 15:57 |
mounir | james_w, thx | 15:58 |
=== beuno is now known as beuno-lunch | ||
idnar | maxb: thanks | 16:21 |
bdmurray | has anybody used searchTasks with the component parameter in the API? I'm getting 500s all the time | 16:29 |
bdmurray | deryck: hello help contact ;-) | 16:31 |
deryck | hey bdmurray. | 16:32 |
deryck | bdmurray, sorry in yui training session right now. | 16:32 |
bdmurray | okay | 16:32 |
deryck | bdmurray, I'll be free in 30 minutes. or maybe abentley could help you if you need it now. | 16:33 |
deryck | and I can cover for him later :) | 16:33 |
bdmurray | I can wait / workaround it in the meantime | 16:34 |
deryck | bdmurray, ok, cool. | 16:36 |
deryck | bdmurray, can you paste me a snippet that is failing? | 17:02 |
bdmurray | ubuntu = lp.distributions['ubuntu'] | 17:03 |
bdmurray | dev_release = ubuntu.current_series | 17:03 |
bdmurray | dev_release.searchTasks(tags=['ftbfs'],component='Main') | 17:04 |
bdmurray | I've tried 'main' and '1' | 17:04 |
Ampelbein | bdmurray: bug 365449 , I ran into that aswell. | 17:04 |
ubot5 | Launchpad bug 365449 in Launchpad itself "component parameter to searchTasks API has no usable values - cannot be used" [High,Triaged] https://launchpad.net/bugs/365449 | 17:04 |
bdmurray | oh I'm subscribed to it even ;-) | 17:05 |
bdmurray | Ampelbein: thanks! | 17:06 |
deryck | well there we go. :) | 17:07 |
deryck | bdmurray, you could fix that bug even ;) | 17:07 |
=== beuno-lunch is now known as beuno | ||
bdmurray | deryck: yes probably | 17:09 |
bdmurray | deryck: also distro_series.componenet_names appears at +apidoc but doesn't show up in the API | 17:34 |
bdmurray | https://launchpad.net/+apidoc/devel.html#distro_series | 17:34 |
deryck | bdmurray, you can't read component_names within lplib? | 17:35 |
bdmurray | deryck: right it doesn't show up | 17:35 |
deryck | bdmurray, ah, yeah. I see. The export is kind of a gludge. I guess we meant to do something with it and never did. | 17:37 |
deryck | hence the bug, I think. | 17:37 |
bdmurray | deryck: its related to the same bug? | 17:38 |
deryck | bdmurray, yes, I believe so. As I read the bug, IComponent needs exporting to fix search, which would also fix component_names. | 17:40 |
deryck | abentley, I'm jumping on tl call at top of hour, if you'd like to take irc then. | 17:53 |
abentley | deryck: certainly. | 17:54 |
deryck | thanks! | 17:54 |
=== deryck changed the topic of #launchpad to: https://launchpad.net/ | Help contact: abentley | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | ||
=== med_out is now known as medberry | ||
=== oubiwann is now known as oubiwann-lunch | ||
=== Quintasan_ is now known as Quintasan | ||
=== yofel_ is now known as yofel | ||
=== oubiwann-lunch is now known as oubiwann | ||
idnar | is it possible to create a branch via the API? | 20:12 |
idnar | (an import branch, in particular) | 20:12 |
lifeless | https://launchpad.net/+apidoc/devel.html#code_import | 20:14 |
lifeless | newCodeImport | 20:14 |
lifeless | so yes, it looks like. | 20:14 |
idnar | ah, thanks | 20:15 |
Andre_Gondim | Hi all, I accidentally made merge in my personal account with old, is it possible to undo? | 20:54 |
maxb | no, account merges are not reversible | 20:55 |
=== matsubara is now known as matsubara-afk | ||
=== abentley changed the topic of #launchpad to: https://launchpad.net/ | Help contact: - | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | ||
lifeless | Andre_Gondim: you can rename the merged account though | 21:38 |
=== poolie_ is now known as poolie | ||
=== medberry is now known as med_out | ||
=== D3Mc4- is now known as D3Mc4 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!