fix: prefix unused key variable in activateGatewayFallback

This commit is contained in:
kumarabhirup 2026-02-21 11:04:20 -08:00
parent f83731d3b5
commit 6650287da2
No known key found for this signature in database
GPG Key ID: DB7CA2289CAB0167

View File

@ -367,7 +367,7 @@ export function isSubagentRunning(sessionKey: string): boolean {
*/
export function activateGatewayFallback(): void {
const reg = getRegistry();
for (const [key, run] of reg.runs) {
for (const [_key, run] of reg.runs) {
if (run.status === "running" && !run._subscribeProcess) {
startSubagentSubscribeStream(run);
}