Refreshes the state of the registry cache by fetching the registry state from the remote registry store.
(self, project: Optional[str] = None)
| 1375 | pass |
| 1376 | |
| 1377 | def refresh(self, project: Optional[str] = None): |
| 1378 | """Refreshes the state of the registry cache by fetching the registry state from the remote registry store.""" |
| 1379 | self._get_registry_proto(project=project, allow_cache=False) |
| 1380 | |
| 1381 | def is_cache_valid(self) -> bool: |
| 1382 | if self.cached_registry_proto_created is None: |