Lazily return the CSRS (if available)
(self)
| 236 | |
| 237 | @property |
| 238 | def csrs(self): |
| 239 | """Lazily return the CSRS (if available)""" |
| 240 | if not self._csrs: |
| 241 | self._find_sharding_info() |
| 242 | return self._csrs |
| 243 | |
| 244 | @property |
| 245 | def chunks_moved_to(self): |
nothing calls this directly
no test coverage detected