Questions tagged [request-timed-out]

94 questions
2
votes
1 answer

Stripe Webhook timed out

Stripe has informed me that it's not receiving a response from my Webhook URL. A Webhook test returns: "Test Webhook Error: Timed out." I understand this to mean that a connection could not be established to the Webhook URL. However, I can't…
HWD
  • 1,547
  • 7
  • 36
  • 72
2
votes
1 answer

meteor fails, can't install npm-packages from npm-shrinkwrap

I have been diagnosing this issue for a few days and have tested the top issue resolutions that appear for "meteor" and "npm" dependencies that look similar to this one. Both I and my back-end engineer are stumped. I'm using an OSX 10.10.3, ruby…
Roralee
  • 508
  • 1
  • 4
  • 15
2
votes
1 answer

Extend Heroku 30 seconds limit

I have a Sinatra app that looks something like this: get '/generate' generate_result(params) # method that takes several minutes to complete end Unfortunately, method 'generate_result' takes several minutes to run. But Heroku's limitation is 30…
Sergey
  • 47,222
  • 25
  • 87
  • 129
2
votes
2 answers

iOS UIWebView loadRequest takes too long

I have one UIWebView in my app, -(void)viewDidLaod{ NSURL *url = [NSURL URLWithString:@"some url string"]; NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadRevalidatingCacheData timeoutInterval:30.0]; …
bluenowhere
  • 2,683
  • 5
  • 24
  • 37
2
votes
1 answer

How to avoid Request Time Out when creating resources with REST

We have a REST based server and the issue is that some resources take long time to create - take couple of minutes<10m. The problem: is that by the time the resource is created I am getting request timeout error on the client instead getting the…
special0ne
  • 6,063
  • 17
  • 67
  • 107
1
vote
3 answers

PHP POST requests timeout

I'm currently working on a upload script supporting larger uploads (~50 Mb) and I have very rapidly run into a problem! I'm using the traditional POST request with a form uploading the file to a temp location and later moving it with PHP. Naturally…
Andreas Jarbol
  • 745
  • 2
  • 11
  • 27
1
vote
1 answer

I need to validate request time out in karate api testing

We ar doing api testing using karate and i want to provide less time out and validate 408 error Tried * configure requestTimeout=100
1
vote
1 answer

Python / Selenium, if 'This site can’t be reached' then do something else

I have a script that tests some proxies and not working proxies will show the page "This site can’t be reached", and If this occurs I want the code to continue and try again with a different proxy, but selenium stays stuck on the "This site can’t be…
xtekky
  • 572
  • 1
  • 4
  • 13
1
vote
2 answers

MySQL 'ETIMEDOUT' error MacOS Monterey when attempting to connect to server

I think I have exhausted all of my options for trying to get MySQL to connect to my express server. Scoured the Google machine, etc.. I am fairly new to MySQL, although I had to wipe out my computer recently and have since tried to get MySQL working…
Tyler
  • 71
  • 2
  • 10
1
vote
2 answers

http retry for Request Timeout (408)

Using hashicorp go-retryablehttp library (https://github.com/hashicorp/go-retryablehttp) It retries automatically for all 5xx code: retryablehttp performs automatic retries under certain conditions. Mainly, if an error is returned by the client…
sergionni
  • 13,290
  • 42
  • 132
  • 189
1
vote
2 answers

How to use Angular Http Interceptors to handle request Time out in Angular

My get request of one BACKEND API i am calling is getting more than 2 minutes.And i am trying to handle this using Angular Http Interceptors.When i added "timeout": 360000 in proxy.config my problem solved to some extent.But still sometimes it…
1
vote
0 answers

how to prevent Heroku H12 "request timeout" for long-running process on Java REST server

We have a Jersey/Grizzly server which serves as our REST backend. Certain requests can easily take longer than 30s to process, which is perfectly normal. Sadly, Heroku terminates the connection after 30s with a H12 "request timeout" error. It…
Marc
  • 1,812
  • 4
  • 23
  • 36
1
vote
1 answer

scrapy response : twisted.internet.error.TCPTimedOutError: TCP connection timed out: 10060

I'm scraping data from a website since 3 months ago, but today I can't access the website anymore, neither with my web-browser. The site is still accessible via mobile phone. I have this message when I test a link in Scrapy shell :…
1
vote
1 answer

GCF timing out when making request

I have code running on a node server. I ported it to GCF. When I run the port, all things seem to work until I make request to URL. It times out. If I comment out the request() call, the code exits as expected. I've searched and searched, but I…
1
vote
1 answer

Why does IIS return a 500 status code when the server times out?

We're running IIS7 & .net 4.0. When the server times out due to a long running request, the error page is shown, but the error code is just 500 rather than 408 or possibly 503 that I'm expecting. We want to show a different error page if it's a…
Glenn Slaven
  • 33,720
  • 26
  • 113
  • 165