From 7e054ea18a459b7ca7ecafe52cad50810f2346b2 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 12 Apr 2025 19:23:51 +0530 Subject: [PATCH] fix: pass poolId to constructor args --- server/src/workflow-management/classes/Generator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/workflow-management/classes/Generator.ts b/server/src/workflow-management/classes/Generator.ts index 35e1cd26..d3f63127 100644 --- a/server/src/workflow-management/classes/Generator.ts +++ b/server/src/workflow-management/classes/Generator.ts @@ -77,7 +77,7 @@ export class WorkflowGenerator { * @param socket The socket used to communicate with the client. * @constructor */ - public constructor(socket: Socket) { + public constructor(socket: Socket, poolId: string) { this.socket = socket; this.poolId = poolId; this.registerEventHandlers(socket);