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

RE: TSVNCache interfering with TortoiseProc?

From: Bob Archer <Bob.Archer_at_amsi.com>
Date: Mon, 16 Sep 2013 19:46:56 +0000

> Mon, Sep 16, 2013 at 2:53 PM, John W. Woznack <jwoznack_at_d-a-s.com>
> wrote:
> > I'm using "TortoiseSVN 1.8.2, Build 24708 - 64 Bit , 2013/08/27
> > 19:20:39" and I keep running into random failed commits.
> >
> > ---
> > Commit failed (details follow):
> > sqlite[S5]: database is locked
> > Additional errors:
> > sqlite[S5]: database is locked
> > Another process is blocking the working copy database, or the
> > underlying filesystem does not support file locking; if the working
> > copy is on a network filesystem, make sure file locking has been
> > enabled on the file server.
> > ---
> >
> > But if I kill TSVNCache and try again, it always succeeds. (I don't
> > recall this being a problem in previous versions.)
> >
> > The files are on my local disk (not networked), so I'm wondering if
> > TSVNCache is interfering with the client app. Is anyone else seeing
> > this also?
>
> I have found TSVNCache to get in the way a lot more frequently with 1.8.x than
> I recall with older releases. I always keep a PowerShell window open, so I wrote
> myself a little function (and put it in my profile, so it's always available to run)
> to kill it quickly when it's giving me trouble.
>
>
> function Stop-TSVNCache {
> $TSVNProcess = Get-Process -Name TSVNCache -ErrorAction SilentlyContinue;
> if ($TSVNProcess) {
> "TSVNCache is running. Killing...";
> $TSVNProcess.Kill();
> }
> }

You could always turn off TSVNCache if it is causing so much trouble. I just install 1.8 so not history yet.

BOb

------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=3064661

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2013-09-16 21:47:07 CEST

This is an archived mail posted to the TortoiseSVN Users mailing list.

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