File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ options:
177
177
--rate-limits-default RATE_LIMITS_DEFAULT [RATE_LIMITS_DEFAULT ...]
178
178
Rate limits for all API requests except /status and /stop (Default: --rate-limits-default "10/minute", "1/second")
179
179
--rate-limit-fast RATE_LIMIT_FAST
180
- Rate limit /status and /stop API requests (Default: "1 /second")
180
+ Rate limit /status and /stop API requests (Default: "2 /second")
181
181
--no-logging-init specify to bypass logging initialization (will be set automatically when using --test)
182
182
183
183
examples:
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ def __init__(
90
90
self ,
91
91
config : Dict ,
92
92
rate_limits_default : List [str ] or None = None ,
93
- rate_limit_fast : str = "1 /second" ,
93
+ rate_limit_fast : str = "2 /second" ,
94
94
tokens_use : List or None = None ,
95
95
tokens_manage : List or None = None ,
96
96
):
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def parse_args() -> argparse.Namespace:
86
86
--rate-limits-default RATE_LIMITS_DEFAULT [RATE_LIMITS_DEFAULT ...]
87
87
Rate limits for all API requests except /status and /stop (Default: --rate-limits-default "10/minute", "1/second")
88
88
--rate-limit-fast RATE_LIMIT_FAST
89
- Rate limit /status and /stop API requests (Default: "1 /second")
89
+ Rate limit /status and /stop API requests (Default: "2 /second")
90
90
--no-logging-init specify to bypass logging initialization (will be set automatically when using --test)
91
91
92
92
Returns:
@@ -171,9 +171,9 @@ def parse_args() -> argparse.Namespace:
171
171
parser .add_argument (
172
172
"--rate-limit-fast" ,
173
173
type = str ,
174
- default = "1 /second" ,
174
+ default = "2 /second" ,
175
175
required = False ,
176
- help = 'Rate limit /status and /stop API requests (Default: "1 /second")' ,
176
+ help = 'Rate limit /status and /stop API requests (Default: "2 /second")' ,
177
177
)
178
178
parser .add_argument (
179
179
"--no-logging-init" ,
You can’t perform that action at this time.
0 commit comments