* Mark connection as healthy by key (internal use)
(key: string)
| 412 | * Mark connection as healthy by key (internal use) |
| 413 | */ |
| 414 | private markHealthyByKey(key: string): void { |
| 415 | this.health.set(key, { |
| 416 | status: "healthy", |
| 417 | lastSuccess: new Date(), |
| 418 | consecutiveFailures: 0, |
| 419 | }); |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * Mark connection as failed (internal use after failed probe) |
no test coverage detected