We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1942833 commit fcdd7e0Copy full SHA for fcdd7e0
importers/scrapeEvaluations.js
@@ -19,7 +19,7 @@ let sessionCookie
19
let courses
20
21
// Throttling and retry configuration
22
-const DELAY_MS = parseInt(process.env.EVAL_SCRAPE_DELAY_MS || '500', 10) // delay between course requests
+const DELAY_MS = parseInt(process.env.EVAL_SCRAPE_DELAY_MS || '250', 10) // delay between course requests
23
const MAX_RETRIES = parseInt(process.env.EVAL_SCRAPE_MAX_RETRIES || '3', 10) // per-course retries on transient errors
24
const RETRY_BACKOFF_MS = parseInt(process.env.EVAL_SCRAPE_RETRY_BACKOFF_MS || '1000', 10) // base backoff
25
0 commit comments