Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is default timeout value of RestSharp RestClient?

Anybody aware of default timeout value of RestSharp RestClient ?

like image 571
theGeekster Avatar asked Mar 03 '15 10:03

theGeekster


People also ask

What is the default timeout for RestClient?

The default value of the REST client response timeout is 120 seconds.

How do you increase timeout in advanced REST client?

You can adjust request timeout in application settings. In version 14 it is possible to adjust request timeout directly in the request editor. I have a default timeout left in the settings (45secs) and still the request times out immediately (it's a POST request); I do see the server processing the request normally.


1 Answers

RestSharp is using HttpWebRequest under the hood, which has a default timeout of 100 seconds.

like image 74
Todd Menier Avatar answered Sep 28 '22 03:09

Todd Menier