fix: pass poolId to constructor args

This commit is contained in:
amhsirak
2025-04-12 19:23:51 +05:30
parent 4a9620caae
commit 7e054ea18a

View File

@@ -77,7 +77,7 @@ export class WorkflowGenerator {
* @param socket The socket used to communicate with the client. * @param socket The socket used to communicate with the client.
* @constructor * @constructor
*/ */
public constructor(socket: Socket) { public constructor(socket: Socket, poolId: string) {
this.socket = socket; this.socket = socket;
this.poolId = poolId; this.poolId = poolId;
this.registerEventHandlers(socket); this.registerEventHandlers(socket);