mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: Prevent unnecessarily touching updatedAt when n8n starts (#5340)
* Include MariaDB in exception list Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <netroy@users.noreply.github.com>
This commit is contained in:
parent
6ca49f9d54
commit
b5154d9be5
|
@ -63,6 +63,7 @@ import { NodeTypes } from '@/NodeTypes';
|
||||||
import { WorkflowRunner } from '@/WorkflowRunner';
|
import { WorkflowRunner } from '@/WorkflowRunner';
|
||||||
import { ExternalHooks } from '@/ExternalHooks';
|
import { ExternalHooks } from '@/ExternalHooks';
|
||||||
import { whereClause } from './UserManagement/UserManagementHelper';
|
import { whereClause } from './UserManagement/UserManagementHelper';
|
||||||
|
import { WorkflowsService } from './workflows/workflows.services';
|
||||||
|
|
||||||
const WEBHOOK_PROD_UNREGISTERED_HINT =
|
const WEBHOOK_PROD_UNREGISTERED_HINT =
|
||||||
"The workflow must be active for a production URL to run successfully. You can activate the workflow using the toggle in the top-right of the editor. Note that unlike test URL calls, production URL calls aren't shown on the canvas (only in the executions list)";
|
"The workflow must be active for a production URL to run successfully. You can activate the workflow using the toggle in the top-right of the editor. Note that unlike test URL calls, production URL calls aren't shown on the canvas (only in the executions list)";
|
||||||
|
@ -867,7 +868,7 @@ export class ActiveWorkflowRunner {
|
||||||
workflowInstance.getPollNodes().length +
|
workflowInstance.getPollNodes().length +
|
||||||
WebhookHelpers.getWorkflowWebhooks(workflowInstance, additionalData, undefined, true)
|
WebhookHelpers.getWorkflowWebhooks(workflowInstance, additionalData, undefined, true)
|
||||||
.length;
|
.length;
|
||||||
await Db.collections.Workflow.update(workflowInstance.id, { triggerCount });
|
await WorkflowsService.updateWorkflowTriggerCount(workflowInstance.id, triggerCount);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// There was a problem activating the workflow
|
// There was a problem activating the workflow
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { validate as jsonSchemaValidate } from 'jsonschema';
|
import { validate as jsonSchemaValidate } from 'jsonschema';
|
||||||
import type { INode, IPinData, JsonObject } from 'n8n-workflow';
|
import type { INode, IPinData, JsonObject } from 'n8n-workflow';
|
||||||
import { NodeApiError, jsonParse, LoggerProxy, Workflow } from 'n8n-workflow';
|
import { NodeApiError, jsonParse, LoggerProxy, Workflow } from 'n8n-workflow';
|
||||||
import type { FindOptionsWhere } from 'typeorm';
|
import type { FindOptionsWhere, UpdateResult } from 'typeorm';
|
||||||
import { In } from 'typeorm';
|
import { In } from 'typeorm';
|
||||||
import pick from 'lodash.pick';
|
import pick from 'lodash.pick';
|
||||||
import { v4 as uuid } from 'uuid';
|
import { v4 as uuid } from 'uuid';
|
||||||
|
@ -459,4 +459,21 @@ export class WorkflowsService {
|
||||||
|
|
||||||
return sharedWorkflow.workflow;
|
return sharedWorkflow.workflow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static async updateWorkflowTriggerCount(id: string, triggerCount: number): Promise<UpdateResult> {
|
||||||
|
const qb = Db.collections.Workflow.createQueryBuilder('workflow');
|
||||||
|
return qb
|
||||||
|
.update()
|
||||||
|
.set({
|
||||||
|
triggerCount,
|
||||||
|
updatedAt: () => {
|
||||||
|
if (['mysqldb', 'mariadb'].includes(config.getEnv('database.type'))) {
|
||||||
|
return 'updatedAt';
|
||||||
|
}
|
||||||
|
return '"updatedAt"';
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.where('id = :id', { id })
|
||||||
|
.execute();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue