From 6fd22646f00bb0e8efdf8d518e04f70543e0fa7a Mon Sep 17 00:00:00 2001 From: Denis Bykhov Date: Tue, 13 Jan 2026 15:17:59 +0500 Subject: [PATCH] Process service should ignore config user Signed-off-by: Denis Bykhov --- services/process/src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/services/process/src/main.ts b/services/process/src/main.ts index 02a8e789d06..f1df7cbdf8d 100644 --- a/services/process/src/main.ts +++ b/services/process/src/main.ts @@ -69,6 +69,7 @@ import { createCollaboratorClient } from './collaborator' const activeExecutions = new Set>() export async function messageHandler (record: ProcessMessage, ws: WorkspaceUuid, ctx: MeasureContext): Promise { + if (record.account === core.account.ConfigUser) return try { const client = new TxOperations(await getClient(ws), record.account) try {