Got a bluescreen in windows while cloning a mercurial repository.

After reboot, I now get this message for almost all hg commands:

c:\src\>hg commit
waiting for lock on repository c:\src\McVrsServer held by '\x00\x00\x00\x00\x00\
x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
interrupted!

Google is no help.

Any tips?

link|improve this question

feedback

5 Answers

up vote 56 down vote accepted

This seems to resolve it, but don't know if it is safe:

Delete the repository file: .hg/store/lock

link|improve this answer
13  
My problem had nothing to do with cloning or BSOD's but for me, I deleted the .hg/wlock file to clear up the lock. – frank hadder Feb 28 '10 at 7:59
1  
Yeah, I think that is what you need to do if your system is stuck with: "hg commit waiting for lock on repository" – jm. Mar 1 '10 at 3:15
1  
hg recover should be run after a broken locking situation. – James Broadhead Dec 8 '11 at 16:49
feedback

Removing .hg/wlock (also) works.

link|improve this answer
2  
This was the case for me. It was a symlink on 'nix to the current server:pid. Thanks a bunch. Then I had to run $ hg recover to clear out the existing journal (& commit message) which I ctrl+c'ed. Not sure, but you may be able to run $ hg recover without deleting the lockfile and it'll do it for you. Worth a shot I suppose. – sholsinger Apr 26 '11 at 0:43
+1 to this answer just for the above comment. – James Broadhead Dec 8 '11 at 16:49
feedback

If the locked repo was the original, I can't imagine it was modifying it to clone it, so it was only preventing you from changing it in the middle and messing up the clone. It should be fine after removing the lock.

The new cloned copy (if it was a local clone) could be in any sort of malformed state, though, so you should throw it out and start it over. (If it was a remote clone, I would hope it failed and already threw out the incomplete copy.)

link|improve this answer
feedback

Here's the Mercurial docs on lock files.

link|improve this answer
feedback

I am very familiar with Mercurial's locking code (as of 1.9.1). The above advice is good, but I'd add that:

  1. I've seen this in the wild, but rarely, and only on Windows machines.
  2. Deleting lock files is the easiest fix, BUT you have to make sure nothing else is accessing the repository. (If the lock is a string of zeros, this is almost certainly true).

(For the curious: I haven't yet been able to catch the cause of this problem, but suspect it's either an older version of Mercurial accessing the repository or a problem in Python's socket.gethostname() call on certain versions of Windows.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.