Skip to content

Commit ab88f22

Browse files
committed
squash: only add to the global
1 parent 3bbce6f commit ab88f22

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
@@ -207,7 +207,7 @@ export async function createBackendRouter(
207207
);
208208
router.use(express.json({ limit: contentLengthLimit }));
209209
router.use(permissionsIntegrationRouter);
210-
router.use('/workflows', express.text({ limit: contentLengthLimit }));
210+
router.use('/workflows', express.text());
211211
router.get('/health', (_, response) => {
212212
logger.info('PONG!');
213213
response.json({ status: 'ok' });

0 commit comments

Comments
 (0)