Re: Subversion svn+ssh, sshd 100% CPU

2017-09-12 Thread Matt Simmons
Why does iostat show? Could it be that your underlying disk is io-saturated and your CPU spike is due to iowait? On Tue, Sep 12, 2017 at 12:14 PM Zoran Petkovic wrote: > In the past few days I have been doing extensive testing of Subversion > with different clients, operating systems, client a

Re: Bug - svn hangs

2017-12-02 Thread Matt Simmons
What is /proc//fd/3 linked to? On Sat, Dec 2, 2017 at 3:54 AM Luca Baraldi wrote: > Thanks Andreas. > > I just tried but my skills fall short on system calls. > > Seems it is blocked on the middle of a read() line, even the line seems > half printed in the log... > > The line which would go as >

Re: Hiding Subversion version number

2017-12-15 Thread Matt Simmons
Many documents relating to information security compliance require blocking visible software version information. On Fri, Dec 15, 2017 at 10:46 AM Nico Kadel-Garcia wrote: > Why would you want to hide this? > > On Fri, Dec 15, 2017 at 10:54 AM, Dave Huang wrote: > > On Dec 15, 2017, at 9:15,

Re: Hiding Subversion version number

2017-12-16 Thread Matt Simmons
This sounds like the ServerSignature directive https://httpd.apache.org/docs/2.4/mod/core.html#serversignature Have you turned it off? On Fri, Dec 15, 2017 at 7:15 AM, Dhanushka Parakrama < parakrama1...@gmail.com> wrote: > Hi All > > Is there any configuration where i can hide the subversion

Re: Hiding Subversion version number

2017-12-16 Thread Matt Simmons
software, but, also many other suggestions. Some practical, some just weird. --Matt On Sat, Dec 16, 2017 at 3:35 AM, Branko Čibej wrote: > On 15.12.2017 20:10, Matt Simmons wrote: > > Many documents relating to information security compliance require > > blocking visible s

Re: SHA-1 collision in repository?

2018-02-22 Thread Matt Simmons
Hi Melissa, That definitely is interesting. I assume you have read http://blogs.collab.net/subversion/subversion-sha1-collision-problem-statement-prevention-remediation-options If you do an svnsync to another location and attempt the commit there, does the problem replicate itself? --Matt On

Re: SHA-1 collision in repository?

2018-02-22 Thread Matt Simmons
n svnsync, but this will take about a week to run--the > repository is 43 GB with 600,000 commits. I guess we'll start it now. > > On Thu, Feb 22, 2018 at 2:04 PM, Matt Simmons wrote: > > Hi Melissa, > > > > That definitely is interesting. > > > > I a

Re: Ignore every file except XX*

2020-06-11 Thread Matt Simmons
Have you considered a pre-commit hook to deny anything not matching your rule? On Thu, Jun 11, 2020 at 11:21 PM Branko Čibej wrote: > On 12.06.2020 07:30, Daniel Sahlberg wrote: > > Hi, > > > > Thanks for your quick response! > > > > > > The way I solve a similar case is to set svn:ignore to

Re: Ignore every file except XX*

2020-06-12 Thread Matt Simmons
It would see the contents of the commit, though, and if the commit included files not starting with XX, it could abort the commit, unless I'm misunderstanding something here? On Fri, Jun 12, 2020 at 5:00 AM Branko Čibej wrote: > On 12.06.2020 08:24, Matt Simmons wrote: > > Have yo