Skip to content

Commit e1f7983

Browse files
committed
make CUBEJS_TRANSPILATION_WORKER_THREADS=true by default
1 parent cb6dc3e commit e1f7983

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/pages/product/configuration/reference/environment-variables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@ code in worker threads.
14051405

14061406
| Possible Values | Default in Development | Default in Production |
14071407
| --------------- | ---------------------- | --------------------- |
1408-
| `true`, `false` | `false` | `false` |
1408+
| `true`, `false` | `true` | `true` |
14091409

14101410
<ReferenceBox>
14111411

packages/cubejs-backend-shared/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ const variables: Record<string, (...args: any) => any> = {
229229
.default('true')
230230
.asBoolStrict(),
231231
transpilationWorkerThreads: () => get('CUBEJS_TRANSPILATION_WORKER_THREADS')
232-
.default('false')
232+
.default('true')
233233
.asBoolStrict(),
234234
allowNonStrictDateRangeMatching: () => get('CUBEJS_PRE_AGGREGATIONS_ALLOW_NON_STRICT_DATE_RANGE_MATCH')
235235
.default('true')

0 commit comments

Comments
 (0)