Browse Source

fix(auth): remove ec2 plugin from worker

Karol Sójko 1 year ago
parent
commit
0281724196
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/auth/bin/worker.ts

+ 1 - 1
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)