()
| 150 | } |
| 151 | |
| 152 | getStatus() { |
| 153 | const index = getPropertyIndex(); |
| 154 | const stats = index.getStats(); |
| 155 | return { |
| 156 | crawling: this.crawling, |
| 157 | lastCrawl: this.lastCrawl?.toISOString() || null, |
| 158 | lastResult: this.lastResult, |
| 159 | indexStats: stats, |
| 160 | }; |
| 161 | } |
| 162 | |
| 163 | private async getPausedAgentUrls(): Promise<Set<string>> { |
| 164 | try { |
no test coverage detected