mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(core): fix workflow hasing for MySQL (#4491)
* 🐛 Alphabetize node keys * 🔥 Remove excess braces
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user