1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

Adding mechanism to disable automation logging in self host.

This commit is contained in:
mike12345567 2022-06-15 17:07:17 +01:00
parent 03165faf0f
commit a7b781468e
2 changed files with 6 additions and 0 deletions

View file

@ -13,6 +13,7 @@ import {
} from "../../db/utils"
import { createLogByAutomationView } from "../../db/views/staticViews"
import { Automation } from "../../definitions/common"
import * as env from "../../environment"
const PAGE_SIZE = 9
const EARLIEST_DATE = new Date(0).toISOString()
@ -134,6 +135,10 @@ export async function storeLog(
automation: Automation,
results: AutomationResults
) {
// can disable this if un-needed in self host
if (env.DISABLE_AUTOMATION_LOGS) {
return
}
const db = getAppDB()
const automationId = automation._id
const name = automation.name

View file

@ -76,6 +76,7 @@ module.exports = {
ALLOW_DEV_AUTOMATIONS: process.env.ALLOW_DEV_AUTOMATIONS,
DISABLE_THREADING: process.env.DISABLE_THREADING,
DISABLE_DEVELOPER_LICENSE: process.env.DISABLE_DEVELOPER_LICENSE,
DISABLE_AUTOMATION_LOGS: process.env.DISABLE_AUTOMATION_LOGS,
MULTI_TENANCY: process.env.MULTI_TENANCY,
ENABLE_ANALYTICS: process.env.ENABLE_ANALYTICS,
SELF_HOSTED: process.env.SELF_HOSTED,