From c84748692f77b459fe6adaa489f093a43c7aa1ab Mon Sep 17 00:00:00 2001 From: Behzad Rabiei Date: Wed, 18 Sep 2024 18:54:28 +0400 Subject: [PATCH] chore: disable the airflow api call --- src/controllers/platform.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/platform.controller.ts b/src/controllers/platform.controller.ts index 93cf928..3d2e61c 100644 --- a/src/controllers/platform.controller.ts +++ b/src/controllers/platform.controller.ts @@ -26,7 +26,7 @@ const logger = parentLogger.child({ module: 'PlatformController' }); const createPlatform = catchAsync(async function (req: IAuthRequest, res: Response) { const community = req.community; const platform = await platformService.managePlatformConnection(community?.id, req.body); - await airflowService.triggerDag(platform); + // await airflowService.triggerDag(platform); res.status(httpStatus.CREATED).send(platform); });