mercurial/localrepo.py
changeset 23511 acc73273b27e
parent 23510 065c0334846f
child 23546 deabbe7ed54b
--- a/mercurial/localrepo.py	Thu Dec 04 13:49:45 2014 -0800
+++ b/mercurial/localrepo.py	Thu Dec 04 16:35:03 2014 -0800
@@ -891,7 +891,10 @@
                                      "journal",
                                      aftertrans(renames),
                                      self.store.createmode)
-        tr.addfinalize('repo.store.write', self.store.write)
+        # note: writing the fncache only during finalize mean that the file is
+        # outdated when running hooks. As fncache is used for streaming clone,
+        # this is not expected to break anything that happen during the hooks.
+        tr.addfinalize('flush-fncache', self.store.write)
         self._transref = weakref.ref(tr)
         return tr