Skip to content

Commit

Permalink
chore: disable the airflow api call
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Sep 18, 2024
1 parent 4f56083 commit c847486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/platform.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

Expand Down

0 comments on commit c847486

Please sign in to comment.