Parcourir la source

tweak: set app/subdomain query limit very high

KernelDeimos il y a 11 mois
Parent
commit
a623c94728
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      packages/backend/src/CoreModule.js

+ 2 - 2
packages/backend/src/CoreModule.js

@@ -150,7 +150,7 @@ const install = async ({ services, app, useapi }) => {
             WriteByOwnerOnlyES,
             ValidationES,
             SetOwnerES,
-            MaxLimitES, { max: 50 },
+            MaxLimitES, { max: 5000 },
         ]),
     });
     services.registerService('es:subdomain', EntityStoreService, {
@@ -162,7 +162,7 @@ const install = async ({ services, app, useapi }) => {
             WriteByOwnerOnlyES,
             ValidationES,
             SetOwnerES,
-            MaxLimitES, { max: 50 },
+            MaxLimitES, { max: 5000 },
         ]),
     });
     services.registerService('rate-limit', RateLimitService);