fix(gateway): accept normal tRPC batch paths

This commit is contained in:
2026-08-09 10:34:26 +00:00
parent 164d7e0f73
commit 773eab9e91
3 changed files with 47 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
export const gatewayFastifyRouterOptions = {
// tRPC joins batched procedure names in a single route parameter. Fastify's
// default limit is 100 characters, which is shorter than normal admin-page
// startup batches such as capabilities + profiles + release state.
maxParamLength: 2_048,
} as const;