From df657a7b12a38222fc10b6c6cf761533133a37dc Mon Sep 17 00:00:00 2001 From: Dion Amago Date: Fri, 22 Sep 2023 15:23:58 -0700 Subject: [PATCH] 3 -> 2 requests / second --- src/pull.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pull.ts b/src/pull.ts index d2b0cc2..983c81d 100644 --- a/src/pull.ts +++ b/src/pull.ts @@ -251,7 +251,7 @@ function writePage(page: NotionPage, finalMarkdown: string) { } const notionLimiter = new RateLimiter({ - tokensPerInterval: 3, + tokensPerInterval: 2, interval: "second", });