mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-24 02:52:24 -08:00
fix(core): fix workflow hasing for MySQL (#4491)
* 🐛 Alphabetize node keys * 🔥 Remove excess braces
This commit is contained in:
parent
e1a3f56651
commit
2b5613ed68
|
@ -29,6 +29,7 @@ import { SharedWorkflow } from './SharedWorkflow';
|
|||
import { objectRetriever, sqlite } from '../utils/transformers';
|
||||
import { AbstractEntity, jsonColumnType } from './AbstractEntity';
|
||||
import type { IWorkflowDb } from '../../Interfaces';
|
||||
import { alphabetizeKeys } from '../../utils';
|
||||
|
||||
@Entity()
|
||||
export class WorkflowEntity extends AbstractEntity implements IWorkflowDb {
|
||||
|
@ -103,7 +104,7 @@ export class WorkflowEntity extends AbstractEntity implements IWorkflowDb {
|
|||
const state = JSON.stringify({
|
||||
name,
|
||||
active,
|
||||
nodes,
|
||||
nodes: nodes ? nodes.map(alphabetizeKeys) : [],
|
||||
connections,
|
||||
settings,
|
||||
staticData,
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
||||
import { CliWorkflowOperationError, SubworkflowOperationError } from 'n8n-workflow';
|
||||
import type { INode } from 'n8n-workflow';
|
||||
|
||||
|
@ -28,3 +29,15 @@ function findWorkflowStart(executionMode: 'integrated' | 'cli') {
|
|||
export const findSubworkflowStart = findWorkflowStart('integrated');
|
||||
|
||||
export const findCliWorkflowStart = findWorkflowStart('cli');
|
||||
|
||||
export const alphabetizeKeys = (obj: INode) =>
|
||||
Object.keys(obj)
|
||||
.sort()
|
||||
.reduce<Partial<INode>>(
|
||||
(acc, key) => ({
|
||||
...acc,
|
||||
// @ts-expect-error @TECH_DEBT Adding index signature to INode causes type issues downstream
|
||||
[key]: obj[key],
|
||||
}),
|
||||
{},
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue