Skip to content

Commit fcdd7e0

Browse files
committed
reducing eval scrape delay; 500ms -> 250ms
1 parent 1942833 commit fcdd7e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

importers/scrapeEvaluations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let sessionCookie
1919
let courses
2020

2121
// Throttling and retry configuration
22-
const DELAY_MS = parseInt(process.env.EVAL_SCRAPE_DELAY_MS || '500', 10) // delay between course requests
22+
const DELAY_MS = parseInt(process.env.EVAL_SCRAPE_DELAY_MS || '250', 10) // delay between course requests
2323
const MAX_RETRIES = parseInt(process.env.EVAL_SCRAPE_MAX_RETRIES || '3', 10) // per-course retries on transient errors
2424
const RETRY_BACKOFF_MS = parseInt(process.env.EVAL_SCRAPE_RETRY_BACKOFF_MS || '1000', 10) // base backoff
2525

0 commit comments

Comments
 (0)