[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] Implement svnadmin verify --force

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Thu, 18 Oct 2012 23:00:15 +0200

Prabhu Gnana Sundar wrote on Thu, Oct 18, 2012 at 20:35:03 +0530:
> Hi all,
>
> Currently svnadmin verify would stop verification process once an
> error/corruption is found in the repo. It does not go till the HEAD of
> the repo to see if there are further corruptions/errors.
>

Why is

  r=0
  HEAD=$(svnlook youngest $repos)
  while [ $r -le $HEAD ]; do
    svnadmin verify -r$r $repos
    r=$(($r + 1))
  done

not an option?

> It would be helpful if "--force" switch would do this.
>
> Attaching a patch and the log message for the same. Please share your
> thoughts...
>
Received on 2012-10-18 23:00:51 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.