Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] BroadcastWithAck behavior #4878

Merged
merged 7 commits into from
Jan 2, 2024
8 changes: 3 additions & 5 deletions lib/broadcast-operator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export class BroadcastOperator<EmitEvents extends EventsMap, SocketData>
timedOut = true;
ack.apply(this, [
new Error("operation has timed out"),
this.flags.expectSingleResponse ? null : responses,
this.flags.expectSingleResponse ? responses[0] : responses,
]);
}, this.flags.timeout);

Expand All @@ -252,10 +252,8 @@ export class BroadcastOperator<EmitEvents extends EventsMap, SocketData>
responses.length === expectedClientCount
) {
clearTimeout(timer);
ack.apply(this, [
null,
this.flags.expectSingleResponse ? null : responses,
]);
if (this.flags.expectSingleResponse) ack.apply(this, responses);
BCCSTeam marked this conversation as resolved.
Show resolved Hide resolved
else ack.apply(this, [null, responses]);
}
};

Expand Down