Failed to get repository information svn+ssh

2013-01-21 Thread Alex Edwards
Hello, I am still having trouble getting this to work, I am unsure what I am doing differently to others. I started with rb 1.6 but couldn't get it working so I thought I would have a go with rb 1.7.1 I reinstalled reviewboard and rbtools. And I am still facing the same problems. - I have c

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Matthew Woehlke
On 2013-01-21 12:42, Alex Edwards wrote: I am still having trouble getting this to work, I am unsure what I am doing differently to others. I started with rb 1.6 but couldn't get it working so I thought I would have a go with rb 1.7.1 I reinstalled reviewboard and rbtools. And I am still facing t

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Alex Edwards
My problem seems very similar to this http://code.google.com/p/reviewboard/issues/detail?id=1750 On Monday, 21 January 2013 09:42:08 UTC-8, Alex Edwards wrote: > > Hello, > > I am still having trouble getting this to work, I am unsure what I am > doing differently to others. I started with rb 1.

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Alex Edwards
the server with apache and RB is runnning ubuntu, the svn server has selinux but it has been disabled I tried using pysvn and was prompted for a password, after which it hung for a while then seems to have exited python (i think), should I have still been in the python shell after executing tha

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Alex Edwards
I have also tried adding this to the svn config file in /data/.subversion/config ssh = ssh -i /var/www/test.com/data/.ssh/id_dsa but that doesnt seem to change anything either! On Monday, 21 January 2013 10:04:30 UTC-8, Alex Edwards wrote: > > the server with apache and RB is runnning ubuntu, th

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Christian Hammond
Specifying your own ssh will actually make it worse. It needs to use our own rbssh in order to use your key. What 1.6.x release did you first have this problem in? I'm trying to determine if there's some big regression in us, in pysvn/svn, or if there's some common configuration problem. Chris

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Alex Edwards
I'm not certain what version it was I will check in the morning it would have been 1.6.14 or 1.6.15, how would I test rbssh? I dont particularly need to use a certificate, can I get this working with a password? I just assumed it only worked with keys! I can set the ssh user to have the same p

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Christian Hammond
My feeling is that if keys are broken, there's a larger issue we should look into. I'm going to play with some stuff and just try again to reproduce this problem on my end. Christian On Jan 21, 2013, at 20:04, Alex Edwards wrote: > I'm not certain what version it was I will check in the mor

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Christian Hammond
Good news. I was able to reproduce this. I'm going to figure out the root cause and get it into the RB 1.7.3 release. This will be late tomorrow or, more likely, the day after. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://

Re: Failed to get repository information svn+ssh

2013-01-21 Thread Christian Hammond
I've spent the past couple hours looking into this. I doubt I will have a fix by tomorrow, unfortunately. This is a very strange bug. Here's what's basically going on: Review Board 1.7 uses Django 1.4, which introduced timezone support, used to specify timezone info in the database and allow for

Re: Failed to get repository information svn+ssh

2013-01-22 Thread Alex Edwards
All servers are running on PST, I had already configured the timezone (or reviewboard has done it for me) to US/Pacific. I tried reviewboard on UTC same errors in the logs, ive checked and they are all in sync. Does apache keep a default location/timezone as well that I might need to change? On

Re: Failed to get repository information svn+ssh

2013-01-22 Thread Christian Hammond
I don't think Apache really factors into this. One more thing to try is to edit your site's conf/settings_local.py file and add: TIME_ZONE = 'US/Pacific' And then restart Apache and try again. If it works, it's a bandaid. I have thoughts on a better fix, but I want to check that first. Chris

Re: Failed to get repository information svn+ssh

2013-01-22 Thread Alex Edwards
that didn't seem to change anything. If i do this: >>> client = pysvn.Client() >>> client.set_default_username('') >>> client.info2('svn+ssh:///') Password: should I see some content? or does python just exit? On Tuesday, 22 January 2013 10:44:20 UTC-8, Christian Hammond wrote: > > I don't th

Re: Failed to get repository information svn+ssh

2013-01-22 Thread Christian Hammond
Running that likely wont give you an accurate repro case. There's a lot that goes on to configure what's used for SSH and how the key is loaded. Are you just running that in Python, or using 'rb-site manage /path/to/site shell'? Christian On Jan 22, 2013, at 10:55, Alex Edwards wrote: > tha

Re: Failed to get repository information svn+ssh

2013-01-23 Thread Alex Edwards
I'm not sure how to run as a rb shell, I was just running in python On Tuesday, 22 January 2013 11:07:28 UTC-8, Christian Hammond wrote: > > Running that likely wont give you an accurate repro case. There's a lot > that goes on to configure what's used for SSH and how the key is loaded. > > Are y

Re: Failed to get repository information svn+ssh

2013-01-23 Thread Christian Hammond
If you run the rb-site command I mentioned, you should get that shell. I've been actively working on this problem, but it is very strange... I'll let you know when I finally have something to test. Christian On Jan 23, 2013, at 8:59, Alex Edwards wrote: > I'm not sure how to run as a rb shel

Re: Failed to get repository information svn+ssh

2013-01-24 Thread Christian Hammond
Hi Alex, I've either lost my mind or found a very weird bug, so I want to have you run a test for me to see what happens. Blow away your pycrypto installation. You can find the location by doing: $ python >>> import Crypto >>> Crypto.__file__ There should be a path to a .egg file (o

Re: Failed to get repository information svn+ssh

2013-01-24 Thread Alex Edwards
Ok, that didn't appear to have any effect. I deleted the file that was output by that command and reinstalled using the command you asked. I'm still not ruling out that this is a config problem by me. I tried running the rb shell rb-site manage /path/ shell I repeated this (and imported pysv

Re: Failed to get repository information svn+ssh

2013-01-24 Thread Christian Hammond
Make sure you're including the proper username as part of the URL. Christian On Jan 24, 2013, at 9:40, Alex Edwards wrote: > Ok, > > that didn't appear to have any effect. > I deleted the file that was output by that command and reinstalled using the > command you asked. > > I'm still not

Re: Failed to get repository information svn+ssh

2013-01-24 Thread Christian Hammond
Also I don't think the rb-site shell test you're doing is enough. There's a bunch of environment variables and things we set that won't be set in this case. You should repro by actually trying to create a repository, and making sure you include the username in the svn+ssh://. Christian -- Christ

Re: Failed to get repository information svn+ssh

2013-01-24 Thread Alex Edwards
yes I am using my svn username in the url like this svn+ssh://@/ and when i use the gui to create a repository I use the same url but I also set the username to be the same username On Thursday, 24 January 2013 12:02:28 UTC-8, Christian Hammond wrote: > > Also I don't think the rb-site shell t

Re: Failed to get repository information svn+ssh

2013-02-05 Thread Pierre-Emmanuel Dutang
Hello guys, I would like to know if you have a solution for this issue cause I have exactly the same problem on my svn repository thanks -- Want to help the Review Board project? Donate today at http://www.reviewboard.org/donate/ Happy user? Let us know at http://www.reviewboard.org/users/ -~

Re: Failed to get repository information svn+ssh

2013-02-05 Thread Pierre-Emmanuel Dutang
Hello guys, Have you find a solution for this issue cause I have exactly the same problem when I want to add a svn repository. thanks On Thursday, January 24, 2013 9:37:55 PM UTC+1, Alex Edwards wrote: > > yes I am using my svn username in the url like this > svn+ssh://@/ > > and when i use th

Re: Failed to get repository information svn+ssh

2013-02-06 Thread Alex Edwards
I don't have a working solution yet On Tuesday, 5 February 2013 05:23:06 UTC-8, Pierre-Emmanuel Dutang wrote: > > Hello guys, > > Have you find a solution for this issue cause I have exactly the same > problem when I want to add a svn repository. > > thanks > > On Thursday, January 24, 2013 9:37:

Re: Failed to get repository information svn+ssh

2013-02-12 Thread andreasfischer82
Same problem here! I do not get ReviewBoard 1.7.5 working with our subversion repository. -- Want to help the Review Board project? Donate today at http://www.reviewboard.org/donate/ Happy user? Let us know at http://www.reviewboard.org/users/ -~--~~~~--~~--~--~-

Re: Failed to get repository information svn+ssh

2013-02-19 Thread o10ka . 72b
Hi. Perhaps, Issue 2834 could be helpful for you. http://code.google.com/p/reviewboard/issues/detail?id=2834 -- Want to help the Review Board project? Donate today at http://www.reviewboard.org/donate/ Happy user? Let us know at http://www.reviewboard.org/users/ -~--~~~~---

Re: Failed to get repository information svn+ssh

2013-02-20 Thread Alex Edwards
This did in fact work. thankyou On Tuesday, 19 February 2013 08:28:36 UTC-8, o10k...@gmail.com wrote: > > Hi. > > Perhaps, Issue 2834 could be helpful for you. > > http://code.google.com/p/reviewboard/issues/detail?id=2834 > -- Want to help the Review Board project? Donate today at http://www.

Re: Failed to get repository information svn+ssh

2013-02-20 Thread Christian Hammond
We're going to get a fix for this in a release tonight. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org VMware, Inc. - http://www.vmware.com On Wed, Feb 20, 2013 at 2:44 PM, Alex Edwards wrote: > This did in fact work. > > thankyou > > > On Tuesd

Re: Failed to get repository information svn+ssh

2013-03-12 Thread Pierre-Emmanuel Dutang
Hi guys, I tried this solution https://code.google.com/p/reviewboard/issues/detail?id=2834 and visibly it's working but I still have an issue about the username. The username have to be in the repo address, if I don't put any name in the repo address it's doesn't works :( best Pierre On Thu

Re: Failed to get repository information svn+ssh

2013-03-12 Thread Christian Hammond
That's a known issue. We tell pysvn about the path and username, but it chooses to ignore the username. We should probably rewrite the path on-the-fly, but I fear that can lead to unexpected configuration problems. You should be able to put the username in and just have the original in Mirror P

Re: Failed to get repository information svn+ssh

2013-11-20 Thread 刘金雨
I got the same issue and report it at here Issue 3140: unable to add subversion respository 在 2013年3月13日星期三UTC+11上午6时42分47秒,Christian Hammond写道: > > That's a known issue. We tell pysvn about the path and username, but it > chooses to