diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-02-07 23:20:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-07 23:20:55 +0100 |
| commit | 0d6494d164cc490d62473eae0fbd79d5573bb380 (patch) | |
| tree | 7a4586e89920b6abd4f6c7724f42634d66cf5f68 /README.md | |
| parent | 60139e7de275473332b560b4139a6a01c3da184c (diff) | |
Add retry module and change rate to requests per minute (#37)v0.7.0
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -175,8 +175,11 @@ export const config = { // Specify the blocked URLs as regex. (default = none) blockedURLs: ["/admin"], - // Specify the rate in requests per second. (default = no rate limit) - rate: 100, + // Specify the rate in requests per minute. (default = no rate limit) + rate: 60, + + // Specify the number of concurrent requests. (default = no limit) + concurrency: 1, // Specify a single HTTP(S) proxy URL. (default = no proxy) proxy: "http://someproxy.com:8043", |