Skip to content

Commit 29258ad

Browse files
committed
squash: only add to the global
1 parent 4a578a8 commit 29258ad

File tree

1 file changed

+1
-1
lines changed
  • workspaces/orchestrator/plugins/orchestrator-backend/src/service

1 file changed

+1
-1
lines changed

workspaces/orchestrator/plugins/orchestrator-backend/src/service/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export async function createBackendRouter(
206206
);
207207
router.use(express.json({ limit: contentLengthLimit }));
208208
router.use(permissionsIntegrationRouter);
209-
router.use('/workflows', express.text({ limit: contentLengthLimit }));
209+
router.use('/workflows', express.text());
210210
router.get('/health', (_, response) => {
211211
logger.info('PONG!');
212212
response.json({ status: 'ok' });

0 commit comments

Comments
 (0)