Skip to content

Commit 716c584

Browse files
committed
fix: cruft
1 parent cefa58f commit 716c584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmap/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ export class Connection extends TypedEventEmitter<ConnectionEvents> {
621621
*/
622622
private async *readMany(): AsyncGenerator<OpMsgResponse | OpQueryResponse> {
623623
try {
624-
this.dataEvents = this.dataEvents = onData(this.messageStream);
624+
this.dataEvents = onData(this.messageStream);
625625
for await (const message of this.dataEvents) {
626626
const response = await decompressResponse(message);
627627
yield response;

0 commit comments

Comments
 (0)