From dd47deb4f3c02d8018a3053e12af3cda489e2ddd Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 8 Dec 2024 12:26:02 +0700 Subject: [PATCH] QFIX OnConnect Signed-off-by: Andrey Sobolev --- plugins/client-resources/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/client-resources/src/index.ts b/plugins/client-resources/src/index.ts index 4a281080ee..d98ad98f12 100644 --- a/plugins/client-resources/src/index.ts +++ b/plugins/client-resources/src/index.ts @@ -121,11 +121,12 @@ export default async () => { newOpt.onConnect = async (event, data) => { // Any event is fine, it means server is alive. clearTimeout(connectTO) + await opt?.onConnect?.(event, data) resolve() } }) } - const clientConnection = connect(url, upgradeHandler, tokenPayload.workspace, tokenPayload.email, opt) + const clientConnection = connect(url, upgradeHandler, tokenPayload.workspace, tokenPayload.email, newOpt) if (connectPromise !== undefined) { await connectPromise }