Skip to content

Commit 04189d8

Browse files
committed
fix: satisfy signal monitor allSettled lint
1 parent 79f4d5d commit 04189d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/signal/src/monitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function createSignalMonitorTaskRunner(runtime: RuntimeEnv) {
8686
},
8787
async waitForIdle(): Promise<void> {
8888
while (inFlight.size > 0) {
89-
await Promise.allSettled(Array.from(inFlight));
89+
await Promise.allSettled(inFlight);
9090
}
9191
},
9292
};

0 commit comments

Comments
 (0)