Skip to content

Commit 2a2d50b

Browse files
committed
docker provider shouldn't force simulate by default
1 parent 2c014f7 commit 2a2d50b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/docker-provider/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const OTEL_EXPORTER_OTLP_ENDPOINT =
2020
process.env.OTEL_EXPORTER_OTLP_ENDPOINT || "http://0.0.0.0:4318";
2121

2222
const FORCE_CHECKPOINT_SIMULATION = ["1", "true"].includes(
23-
process.env.FORCE_CHECKPOINT_SIMULATION ?? "true"
23+
process.env.FORCE_CHECKPOINT_SIMULATION ?? "false"
2424
);
2525

2626
const logger = new SimpleLogger(`[${MACHINE_NAME}]`);

0 commit comments

Comments
 (0)