diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-18 09:19:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 09:19:58 +0200 |
commit | 181759e872eb29e11e1d441835199a7b25f64fb5 (patch) | |
tree | 72d127ebd20a653d96d7b191e1949c00333824ce /doc/classes | |
parent | ecc86afc00c6ace07bfc05ea6ebe8a971d40934b (diff) | |
parent | 5f0cad8cfac1c0d58b0be0dea79287090835764a (diff) |
Merge pull request #62849 from Calinou/doc-httprequest-timeout
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/HTTPRequest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/HTTPRequest.xml b/doc/classes/HTTPRequest.xml index f138b9087b..3d2e9449e2 100644 --- a/doc/classes/HTTPRequest.xml +++ b/doc/classes/HTTPRequest.xml @@ -251,6 +251,7 @@ Maximum number of allowed redirects. </member> <member name="timeout" type="float" setter="set_timeout" getter="get_timeout" default="0.0"> + If set to a value greater than [code]0.0[/code] before the request starts, the HTTP request will time out after [code]timeout[/code] seconds have passed and the request is not [i]completed[/i] yet. For small HTTP requests such as REST API usage, set [member timeout] to a value between [code]10.0[/code] and [code]30.0[/code] to prevent the application from getting stuck if the request fails to get a response in a timely manner. For file downloads, leave this to [code]0.0[/code] to prevent the download from failing if it takes too much time. </member> <member name="use_threads" type="bool" setter="set_use_threads" getter="is_using_threads" default="false"> If [code]true[/code], multithreading is used to improve performance. |