We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4d559 commit a84b83bCopy full SHA for a84b83b
packages/indexer-common/src/allocations/tap-collector.ts
@@ -33,7 +33,8 @@ import { getEscrowAccounts } from './escrow-accounts'
33
// every 15 minutes
34
const RAV_CHECK_INTERVAL_MS = 900_000
35
36
-const PAGE_SIZE = 1000
+// 1000 here was leading to http 413 request entity too large
37
+const PAGE_SIZE = 200
38
39
interface RavMetrics {
40
ravRedeemsSuccess: Counter<string>
0 commit comments