From d00e6a02e29ae2255a16d2587212796e227aa7b4 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Thu, 14 Jul 2022 01:16:35 -0500 Subject: [PATCH] Remove unnecessary container call --- src/support/bus/WebSocketBus.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/support/bus/WebSocketBus.ts b/src/support/bus/WebSocketBus.ts index 83d2778..87f01ae 100644 --- a/src/support/bus/WebSocketBus.ts +++ b/src/support/bus/WebSocketBus.ts @@ -97,7 +97,6 @@ export class WebSocketBus implements EventBus, AwareOfContainerLifecycle { await resource.runInAsyncScope(async () => { this.logging.verbose(`Got data from websocket: ${data}`) try { - Container.getContainer() await this.onMessage(`${data}`) } catch (e: unknown) { if ( e instanceof NoSerializerError ) {