UI - Add missing 'requests timeout in seconds' field to main settings, Re #975

This commit is contained in:
dgtlmoon
2025-10-12 21:42:07 +02:00
parent 3ee50b7832
commit 02ecc4ae9a
3 changed files with 11 additions and 1 deletions

View File

@@ -952,7 +952,12 @@ class globalSettingsRequestForm(Form):
render_kw={"style": "width: 5em;"},
validators=[validators.NumberRange(min=1, max=50,
message="Should be between 1 and 50")])
timeout = IntegerField('Requests timeout in seconds',
render_kw={"style": "width: 5em;"},
validators=[validators.NumberRange(min=1, max=999,
message="Should be between 1 and 999")])
extra_proxies = FieldList(FormField(SingleExtraProxy), min_entries=5)
extra_browsers = FieldList(FormField(SingleExtraBrowser), min_entries=5)