(self, remote: Optional[str], odb: Optional["ObjectDB"] = None)
| 273 | return ret |
| 274 | |
| 275 | def push(self, remote: Optional[str], odb: Optional["ObjectDB"] = None): |
| 276 | try: |
| 277 | dest_odb = odb or self.repo.cloud.get_remote_odb( |
| 278 | remote, "push --run-cache", hash_name="md5-dos2unix" |
| 279 | ) |
| 280 | except RemoteConfigError as e: |
| 281 | raise RunCacheNotSupported(e) from e |
| 282 | return self.transfer(self.repo.cache.legacy, dest_odb) |
| 283 | |
| 284 | def pull(self, remote: Optional[str], odb: Optional["ObjectDB"] = None): |
| 285 | try: |