Skip to content

Commit 465e12e

Browse files
committed
fix: fixed small race condition in benchmark causing error
1 parent 9d36422 commit 465e12e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benches/suites/streams/stream_1KiB.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ async function main() {
7575
...suiteCommon,
7676
);
7777
await writer.close();
78-
await quicClient?.destroy({ force: false });
79-
await quicServer?.stop({ force: false });
78+
await quicClient?.destroy();
79+
await quicServer?.stop();
8080
return summary;
8181
}
8282

0 commit comments

Comments
 (0)