Skip to content

Commit e3f49b3

Browse files
committed
fix(core): prefer rpc brodcast to use allSettled instead of all
1 parent e4feaea commit e3f49b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/src/node/host-functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class RpcFunctionsHost extends RpcFunctionsCollectorBase<DevToolsRpcServe
5050

5151
debugBroadcast(JSON.stringify(options.method))
5252

53-
await Promise.all(
53+
await Promise.allSettled(
5454
this._rpcGroup.clients.map((client) => {
5555
if (options.filter?.(client) === false)
5656
return undefined

0 commit comments

Comments
 (0)