Re: autopacking twice?
From: Duy Nguyen <hidden>
Date: 2016-06-15 23:01:43
On Sun, Jun 22, 2014 at 12:51 PM, Michael S. Tsirkin [off-list ref] wrote:
Why did it auto-pack twice in a single pull? None of the changes applied are very large. Guess: auto-packing was started in background, did not complete in time, and was restarted for the second time? If true, some kind of lock file would be useful to prevent this.
There is a lock, $GIT_DIR/gc.pid. However we are prepared to deal with stale locks, and may have slipped somehow. The test is in builtin/gc.c, lock_repo_for_gc(). Oh wait, we check for lock (and exit if lock exists) _after_ we print the message (in cmd_gc). That might be it.. If it so, maybe we can reorder some code to prevent this bogus message, but has to be careful and do it before daemonizing.. -- Duy