mercurial/interfaces/repository.py
changeset 47310 7edaf91c7886
parent 47307 d1589957fdcb
child 48564 c514936d92b4
equal deleted inserted replaced
47309:e96f75857361 47310:7edaf91c7886
    84     CACHE_FULL_MANIFEST,
    84     CACHE_FULL_MANIFEST,
    85     CACHE_MANIFESTLOG_CACHE,
    85     CACHE_MANIFESTLOG_CACHE,
    86     CACHE_TAGS_DEFAULT,
    86     CACHE_TAGS_DEFAULT,
    87     CACHE_TAGS_SERVED,
    87     CACHE_TAGS_SERVED,
    88 }
    88 }
       
    89 
       
    90 # the cache to warm by default on simple call
       
    91 # (this is a mutable set to let extension update it)
       
    92 CACHES_POST_CLONE = CACHES_ALL.copy()
       
    93 CACHES_POST_CLONE.discard(CACHE_FILE_NODE_TAGS)
    89 
    94 
    90 
    95 
    91 class ipeerconnection(interfaceutil.Interface):
    96 class ipeerconnection(interfaceutil.Interface):
    92     """Represents a "connection" to a repository.
    97     """Represents a "connection" to a repository.
    93 
    98