diff hgext3rd/topic/__init__.py @ 6554:ba8354de1c4d stable

topic: invalidate topic namespace cache in repo.invalidatecaches()
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 04 Oct 2023 13:44:33 -0300
parents 90b631fde2d7
children cb009f13126a
line wrap: on
line diff
--- a/hgext3rd/topic/__init__.py	Fri Aug 25 16:01:28 2023 -0300
+++ b/hgext3rd/topic/__init__.py	Wed Oct 04 13:44:33 2023 -0300
@@ -636,6 +636,7 @@
                                                       closed=closed)
 
         def invalidatecaches(self):
+            self._tnscache.clear()
             self._topiccache.clear()
             super(topicrepo, self).invalidatecaches()