* Mark connection as healthy. * Call after successful SSH operations to maintain health state.
(config: SSHConnectionConfig)
| 394 | * Call after successful SSH operations to maintain health state. |
| 395 | */ |
| 396 | markHealthy(config: SSHConnectionConfig): void { |
| 397 | const key = makeConnectionKey(config); |
| 398 | this.markHealthyByKey(key); |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Report a connection failure. |