[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: Andy Levy <andy.levy_at_gmail.com>
Date: Mon, 16 Sep 2013 15:38:37 -0400

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();
}
}

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

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2013-09-16 21:39:23 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.