mercurial/interfaces/repository.py
changeset 47310 7edaf91c7886
parent 47307 d1589957fdcb
child 48564 c514936d92b4
--- a/mercurial/interfaces/repository.py	Mon May 17 15:27:29 2021 +0200
+++ b/mercurial/interfaces/repository.py	Mon May 17 15:42:18 2021 +0200
@@ -87,6 +87,11 @@
     CACHE_TAGS_SERVED,
 }
 
+# the cache to warm by default on simple call
+# (this is a mutable set to let extension update it)
+CACHES_POST_CLONE = CACHES_ALL.copy()
+CACHES_POST_CLONE.discard(CACHE_FILE_NODE_TAGS)
+
 
 class ipeerconnection(interfaceutil.Interface):
     """Represents a "connection" to a repository.