Re: commit hangs

2010-04-25 Thread Franz Gregor
Hi,

i just found out that there is no problem when i use subclispe with
SVNKit. 

But i would prefere the cli. What lib does the cli use?

How can i change the MTU of a iface? (btw. i don't use vpn)

Greetz Franz



Re: svnadmin hotcopy fail with 1.6.11

2010-04-25 Thread Stefan Sperling
On Sat, Apr 24, 2010 at 10:15:47PM -0700, Andy Peters wrote:
> Hello, list ... 
> 
> I just updated a server from 1.6.3 to 1.6.11, running on Fedora 7. I
> didn't do a dump and load on the repository.
> 
> When running svnadmin hotcopy on the repo, I get a complaint about
> file fsfs.conf not found. When I looked in the repo, I didn't see this
> file, so that explains the error. But what has changed between 1.6.3
> and 1.6.11 that would cause this error, and better yet, how do I fix
> it?

There was a bug in versions prior to 1.6.11 which caused fsfs.conf
not to be copied during hotcopy (it had simply been forgotten).

>From http://svn.apache.org/repos/asf/subversion/trunk/CHANGES :

  Version 1.6.11
  (19 Apr 2010, from /branches/1.6.x)
  http://svn.apache.org/repos/asf/subversion/tags/1.6.11
  
   User-visible changes:
[...]
* make 'svnadmin hotcopy' copy the fsfs config file (r905303)

Since you hotcopied your repository with versions of Subversion
which had the bug, you lost your fsfs.conf (probably some time ago).

Now svnadmin complains if the file isn't there. But you can easily
recreate it. Either copy it from a freshly created repository,
or create an empty file called fsfs.conf (either way will give you
the default configuration).

I'd rather not make this error non-fatal because people might be
relying on fsfs.conf and not realise that it has disappeared.

Stefan


Re: commit hangs

2010-04-25 Thread Piotr Kabaciński

On 04/25/2010 10:48 AM, Franz Gregor wrote:

i just found out that there is no problem when i use subclispe with
SVNKit. 


But i would prefere the cli. What lib does the cli use?


I assumed that this was the same lib, but now i am not sure.



How can i change the MTU of a iface? (btw. i don't use vpn)


E.g. ifconfig eth0 mtu 1400


greetings
--
Piotr Kabacinski
a2Fib3Q


Re: Building from source

2010-04-25 Thread Daniel Shahaf
Matthias Hryniszak wrote on Sat, 24 Apr 2010 at 11:46 +0200:
> Hi there,
> 
> I'm looking for instructions for building Subversion (current trunk) from
> sources on Windows using free tools. I'd love to have it under VC++ 2010
> Express but any other VC++ Express would do. Is there a HOWTO that I could
> use?
> 

The topic has come up a few times recently (on users@ and dev@), but
there is no HOWTO yet.  Just the documentation that's always been there,
scripts that folk use, and folks who attempted it before and can share
their war stories...

You have several starting points:

* the INSTALL file
* the buildbot build scripts
  (trunk/tools/buildbot/, trunk/build/hudson/, maybe other places)
* the build scripts shipped with TortoiseSVN, SharpSVN, etc
  (http://article.gmane.org/gmane.comp.version-control.subversion.devel/119374)
* a makefile I posted on this list some time ago, for use with VC Express
  (http://svn.haxx.se/users/archive-2009-07/0764.shtml)

Please feel free to follow up (here or on #svn-dev) if you have any 
questions.

Daniel
(yes, it would be nice to have an HOWTO.  Or just to have all relevant
information/pointers in one place.  Or to otherwise ease/automate the
"set up a build env" process.)

> Best regards,
> Matthias.
> 


Re: commit hangs

2010-04-25 Thread Franz Gregor
Hi,

That's it! Thanks a lot! Changing the MTU works.

But wait a sec. 
What's the point in changing the MTU? 
What does a lower MTU change in the commit process?
Did you use(d) svn+ssh as well?

Greetz Franz



Re: commit hangs

2010-04-25 Thread Piotr Kabaciński

On 04/25/2010 12:29 PM, Franz Gregor wrote:

That's it! Thanks a lot! Changing the MTU works.

But wait a sec. 
What's the point in changing the MTU? 
What does a lower MTU change in the commit process?


In fact i don't know :) I had problem with update.
I've explained this to myself as a problem with encapsulating svn data 
content into ip packets. But no proof for that.

I found topic about this, maybe it explain you something more
http://svn.haxx.se/dev/archive-2005-05/1218.shtml



Did you use(d) svn+ssh as well?


No, i had problem with tunneling svn connection with openvpn. Problem 
occured on notebook ubuntu installation.



greets
--
Piotr Kabacinski
a2Fib3Q


Re: commit hangs

2010-04-25 Thread Erik Huelsmann
2010/4/25 Piotr Kabaciński :
> On 04/25/2010 12:29 PM, Franz Gregor wrote:
>>
>> That's it! Thanks a lot! Changing the MTU works.
>>
>> But wait a sec. What's the point in changing the MTU? What does a lower
>> MTU change in the commit process?
>
> In fact i don't know :) I had problem with update.
> I've explained this to myself as a problem with encapsulating svn data
> content into ip packets. But no proof for that.
> I found topic about this, maybe it explain you something more
> http://svn.haxx.se/dev/archive-2005-05/1218.shtml

MTU is a network setting; I presume it kicks in when you start an
update/commit/whatever with svn. Here's more about the MTU:
http://en.wikipedia.org/wiki/Maximum_transmission_unit

>> Did you use(d) svn+ssh as well?
>
> No, i had problem with tunneling svn connection with openvpn. Problem
> occured on notebook ubuntu installation.

Bye,

Erik.