* Get current health status for a connection
(config: SSHConnectionConfig)
| 363 | * Get current health status for a connection |
| 364 | */ |
| 365 | getConnectionHealth(config: SSHConnectionConfig): ConnectionHealth | undefined { |
| 366 | const key = makeConnectionKey(config); |
| 367 | return this.health.get(key); |
| 368 | } |
| 369 | |
| 370 | /** |
| 371 | * Get deterministic controlPath for SSH config. |
no test coverage detected