Increase Timeout Limit in Google Chrome
Internet Speed at Work Is Very Limited, and Because of This I Can't Load Several Useful Pages, Like Trello, Bitbucket, Slack and So On. Chrome Console Shows Me...
Internet speed at work is very limited, and because of this I can't load several useful pages, like Trello, Bitbucket, Slack and so on.
Chrome console shows me a long list timeout errors like GET net::ERR_TIMED_OUT.
I was wondering if there is any way to change timeout settings in Chrome.
2 Answers
- Chrome: It is not possible to change the timeout settings in Chrome.
- Firefox: You can set the value of
network.http.connection-timeoutinabout:config - IE: It's possible to change the timeout behavior in the windows registry.
- Safari: There is a safari extension SafariNoTimeout to extend the timeout from 60s to 10min.
I had this problem, and have figured out a way to avoid it.
Use fetch!
I do not exactly know why this works, but it does. We use swagger when testing our api's, and saw that it never times out.
That lead us to try converting our xhr-request into a fetch-request, in addition to expanding our gateway-timeout etc.
And it works! Chrome doesn't timeout after a minute.