(&self)
| 489 | } |
| 490 | |
| 491 | async fn read_live_entries(&self) -> Vec<PublishedInspector> { |
| 492 | let _lock = RegistryFileLock::acquire(&self.path).ok(); |
| 493 | let mut registry = read_registry_file(&self.path); |
| 494 | prune_registry_file(&mut registry); |
| 495 | registry.inspectors |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | struct RegistryFileLock { |
no test coverage detected