()
| 18 | static args = Command.args |
| 19 | |
| 20 | async run(): Promise<void> { |
| 21 | const storageEngine = await this.getStorageEngine() |
| 22 | const storageRunning = await storageEngine.healthCheck() |
| 23 | if (!storageRunning) { |
| 24 | const msg = `Storage engine check at ${storageEngine.host} FAILED canceling SERVE` |
| 25 | this.logger.error(msg) |
| 26 | throw new Error(msg) |
| 27 | } |
| 28 | await this.startQueryEngine() |
| 29 | } |
| 30 | } |
nothing calls this directly
no test coverage detected