Skip to content

Commit 7f3b92a

Browse files
committed
fixup: invert condition so the difference shows in CI perf tests
1 parent ce33015 commit 7f3b92a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/shell-evaluator/src/shell-evaluator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class ShellEvaluator<EvaluationResultType = ShellResult> {
5757
) {
5858
this.instanceState = instanceState;
5959
this.resultHandler = resultHandler;
60-
const AsyncWriterCls = process.env.MONGOSH_EXPERIMENT_ASYNC_REWRITER3
60+
const AsyncWriterCls = !process.env.MONGOSH_NO_EXPERIMENT_ASYNC_REWRITER3
6161
? AsyncWriter3
6262
: AsyncWriter2;
6363
this.asyncWriter = new AsyncWriterCls();

0 commit comments

Comments
 (0)