Questions tagged [request-timed-out]

94 questions
27
votes
7 answers

Diagnosing "Request timed out" HttpExceptions

Here on StackOverflow, we're seeing a few "Request timed out" exceptions every day. The facts: Request timeout is the default 90 seconds Occurs only on POSTs Data posted is text, usually small (< 1KB), but can range to a few KB No Form data is…
Jarrod Dixon
  • 15,727
  • 9
  • 60
  • 72
21
votes
6 answers

Requesting Elasticsearch from Node times out

I am setting up a simple Node.js REST service to interface with Elasticsearch, using the official Javascript client. I'm running this code locally, but the cluster is located remotely. When I go trough the browser, with the _head plugin, I can…
14
votes
3 answers

How to manage the 5 seconds response timeout limit in Dialogflow / Api.ai?

I am using Dialogflow to create an agent / bot which responds to different types of user queries with action items like "I need to get a letter from the HR for address proof". This needs the bot to fetch some information from the company's database…
13
votes
5 answers

NSURLRequest timeout interval default time

Can you share your answer to me for NSURLRequest default timeoutInterval time NSMutableURLRequest default timeoutInterval time
IOS Rocks
  • 2,127
  • 2
  • 21
  • 24
10
votes
3 answers

Google Sheet Error: Service Spreadsheets timed out while accessing document with id

I get this error "Service Spreadsheets timed out while accessing document with id ..." every time I run a very simple code, in which I am basically copying data from one google sheet to another using getValues() and setValues(). I don't think it is…
cate
  • 121
  • 1
  • 1
  • 4
10
votes
2 answers

Volley request retry policy doesn't consider timeout

I've set 1500 as initialTimeoutMs in DefaultRetryPolicy as below but it doesn't consider the timeout: request.setRetryPolicy(new DefaultRetryPolicy(1500 , DefaultRetryPolicy.DEFAULT_MAX_RETRIES ,…
Alireza Noorali
  • 3,129
  • 2
  • 33
  • 80
9
votes
5 answers

Google Apps script setValues() issue: timing out intermittently

I have a Google Apps script that has been running without issues for 4 years. However, since 3 weeks I have this problem: the script is running for a very long time and failing. This happens every 3 out of 10 runs. The error message is “Service…
9
votes
1 answer

how set the request timeout in asp .net core 3.1

From the Visual Studio select Create a new project. Select ASP.NET Core 3.1 Publish and Host in IIS Increase upload file size this code : public void ConfigureServices(IServiceCollection services) { services.Configure(options…
sbr
  • 167
  • 1
  • 2
  • 11
9
votes
3 answers

Git issue: Failed to connect (Timed Out)

I'm having the same issue as described here, but unfortunately that did not receive an answer... Essentially, whenever I try to push/clone to a git repository (whether its from Github or another site), I am unable to do so. I am getting the…
user3342582
  • 101
  • 1
  • 1
  • 4
8
votes
1 answer

Set Request Timeout in Elastic Search for bulk loads

I wanted to set the request time to 20 sec or more in Elasticsearch Bulk uploads. Default time is set to 10 sec and my Warning message days it takes 10.006 sec. And, right after displaying the waring the execution is throwing an error Now, I wanted…
7
votes
1 answer

Any Progress on Diagnosing “Request timed out” HttpExceptions?

I am having the same issue as described in this post, Diagnosing "Request timed out" HttpExceptions. I've turned on Failed Request Tracing as recommended and am working with someone at MS (although it's painfully slow). The original post hasn't…
Dr. Hilarius
  • 1,134
  • 1
  • 14
  • 20
7
votes
1 answer

FtpWebResponse, the operation timed out

I want to download files based on their date time from a ftp server..I can access this Ftp from CuteFtp third party and every thing is Okey..but when I run the code below at line GetRespone() I get this error: the operation has timed out. I…
Paridokht
  • 1,374
  • 6
  • 20
  • 45
6
votes
7 answers

Ping - Request timed out on a local network

I'm trying to ping another computer that is connected to the same Wi-Fi network. Pinging to anything else (localhost, website, etc.) works fine. But when I try to ping to the local ip address of my second computer I get a Request timed out.…
AlexT
  • 589
  • 2
  • 9
  • 23
5
votes
2 answers

Disable `pip install` Timeout For Slow Connections

I recently moved to a place with terrible internet connection. Ever since then I have been having huge issues getting my programming environments set up with all the tools I need - you don't realize how many things you need to download until each…
Oha Noch
  • 374
  • 1
  • 7
  • 22
4
votes
2 answers

Best way to limit time execution in a @RestController

Considering the following code: @RestController @RequestMapping("/timeout") public class TestController { @Autowired private TestService service; @GetMapping("/max10secs") public String max10secs() { //In some cases it can…
1
2 3 4 5 6 7