(self)
| 1043 | return True |
| 1044 | |
| 1045 | def wipe_cache(self): |
| 1046 | logger.warning("Discarding incompatible cache and forcing a cache rebuild") |
| 1047 | self._chunks = ChunkIndex() |
| 1048 | self.cache_config.manifest_id = "" |
| 1049 | self.cache_config._config.set("cache", "manifest", "") |
| 1050 | |
| 1051 | self.cache_config.ignored_features = set() |
| 1052 | self.cache_config.mandatory_features = set() |
| 1053 | |
| 1054 | def update_compatibility(self): |
| 1055 | operation_to_features_map = self.manifest.get_all_mandatory_features() |