1import { clearAllCachedConnections } from './dbConnCacheF.mts'2import { portForwardMgr } from '../kubePortFwdF/portForwardMgrAI.mts'4// Evict stale cached connection pools, then bounded-wait for the port-forward5// watchdog to revive the tunnel before the caller rebuilds connections.6export const recoverStaleDbConns = async () => {8 await portForwardMgr.awaitRecovery()9}