From 02817241965db06cc02e9cca1d068446db0dee4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Wed, 4 Oct 2023 13:21:09 +0200 Subject: [PATCH] fix(auth): remove ec2 plugin from worker --- packages/auth/bin/worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/auth/bin/worker.ts b/packages/auth/bin/worker.ts index c5d50ad5e..6c1c4371f 100644 --- a/packages/auth/bin/worker.ts +++ b/packages/auth/bin/worker.ts @@ -22,7 +22,7 @@ void container.load().then((container) => { if (isConfiguredForAWSProduction) { AWSXRay.enableManualMode() - AWSXRay.config([AWSXRay.plugins.EC2Plugin, AWSXRay.plugins.ECSPlugin]) + AWSXRay.config([AWSXRay.plugins.ECSPlugin]) } const logger: Logger = container.get(TYPES.Auth_Logger)