Enable threading in development for queries and automations.
This commit is contained in:
parent
f8073c3f5a
commit
43671f1aa3
|
@ -38,7 +38,6 @@ async function init() {
|
|||
SELF_HOSTED: "1",
|
||||
DISABLE_ACCOUNT_PORTAL: "1",
|
||||
MULTI_TENANCY: "",
|
||||
DISABLE_THREADING: "1",
|
||||
SERVICE: "app-service",
|
||||
DEPLOYMENT_ENVIRONMENT: "development",
|
||||
BB_ADMIN_USER_EMAIL: "",
|
||||
|
|
|
@ -100,11 +100,6 @@ const environment = {
|
|||
LOG_JS_ERRORS: process.env.LOG_JS_ERRORS,
|
||||
}
|
||||
|
||||
// threading can cause memory issues with node-ts in development
|
||||
if (coreEnv.isDev() && environment.DISABLE_THREADING == null) {
|
||||
environment._set("DISABLE_THREADING", "1")
|
||||
}
|
||||
|
||||
// clean up any environment variable edge cases
|
||||
for (let [key, value] of Object.entries(environment)) {
|
||||
// handle the edge case of "0" to disable an environment variable
|
||||
|
|
Loading…
Reference in New Issue