Questions tagged [request-timed-out]
94 questions
4
votes
2 answers
Flutter App failed to make HTTP request on iOS simulator
I tried to make a simple HTTP get request using Dio in a Flutter App like this:
Dio dio = new Dio();
Response response = await dio.get('https://www.baidu.com');
print(response.data.toString());
It works perfect on a real iOS device, but time out on…

BeBeBerr
- 41
- 1
- 3
4
votes
2 answers
linkedin oauth2 login returns "504 Gateway Time-out"
I'm using linkedin login on my website. Everything was working until last week, when it started returning "504 Gateway Time-out" error. I did not change anything in my application settings on linkedin developer site nor in my application code. Weird…

Lukas Haberzettl
- 67
- 5
4
votes
2 answers
Can we attach SNS notification when any aws lambda function gets timed-out?
I need to send notification mail if my lambda function gets any error or got timed out. I had handled errors programmatically in function code but unable to notify when function gets timed out.
I am ready with my SNS topic and all.
Can anyone please…

dattaprasad mundada
- 51
- 7
4
votes
1 answer
How to handle a request timeout in ASP.NET MVC5 application?
I have tried the following so far-
1) Added Custom attribute for handling timeout.
public class TimeOutFilter : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
…

sanjog jadhav
- 65
- 1
- 11
4
votes
4 answers
FileZilla Connection timed out, Error Connecting to Server
I am having an issue with FileZilla, when I try access my FTP account, I get this:
Status: Connecting to xxx.xxx.xxx.xxx:xx (Ip adds:port)
Error: Connection timed out
Error: Could not connect to server
Status: Waiting to retry...
Status:…

Som
- 950
- 2
- 16
- 29
3
votes
0 answers
How to resolve HTTPSConnectionPool(host='ads.google.com', port=443): Read timed out. (read timeout=3600) error?
I have been using a python script to download a report from google AdManager using a saved query. However, when I try to run the script to download the report I face the timeout error. I tried to find a solution for it but haven't been able to…

Manish Shegokar
- 101
- 1
- 10
3
votes
2 answers
SOAP Request Timeout in Console App (.NET)
I have a SOAP web service added to a console app and every time I make a specific call its timing out on me. Other calls work fine. How do I increase the timeout length in a console app? Seems like it's currently about 90 seconds.
Thanks.

Wes P
- 9,622
- 14
- 41
- 48
3
votes
2 answers
Google app engine, Request time out after 30 sec, F2 instance
I have deployed my Django app with Google App Engine. The app contains APIs; in each API there are calculations on thousands of records. In short I have some APIs that take more than 60 sec and I get 502 error. How can I fix that?
Are google app…

Nauman Sharif
- 163
- 11
3
votes
0 answers
BigQuery Request Timed out error on script
We are getting an error when running a query job on BigQuery :
'message' => 'Request timed out. Please try again.',
'reason' => 'timeout',
'location' => 'script'
We will be running it again as it requested, but since it takes 1/2…

user3688176
- 327
- 3
- 13
3
votes
2 answers
Long delay in DNS lookup after restart/resume windows
Since I've a new Cisco router I've trouble browsing the web after resuming or starting my laptop. I did some debugging and it seems that I have a network connection, but that the DNS is failing for a while (say; more that 50 seconds).
You can see…

Jørgen
- 2,157
- 1
- 23
- 24
2
votes
2 answers
Timed out error for NSUrlRequest
When I open the app from background I need to hit server to get some data. When I'm doing so I am getting an alert as follows:
"Request timed out" (nserror's localised description)
I'm on wifi and my internet as well as my server are fine.
This is…

Harsha Vardhan Pabbineedi
- 55
- 3
- 10
2
votes
0 answers
getServerSideProps giving error request time out after deployment
export async function getServerSideProps(context) {
const docRef = doc(db, "chats", context.query.id);
const messagesRes = await getDocs(query(collection(docRef, "messages"), orderBy('timestamp','asc')));
const messages =…

Jatin Watts
- 21
- 2
2
votes
2 answers
How to set timeout in Kong v1.1.2
Problem
I am getting an error message in my Kong error log reporting that the upstream server has timed out. But I know that the upstream process was just taking over a minute, and when it completes (after Kong has logged the error) it logs a java…

fei0x
- 4,259
- 4
- 17
- 37
2
votes
1 answer
JENKINS SVN Connectivity: E175002: timed out waiting for server
We are using SVN as our SCM tool and Jenkins as our CI tool. The first SVN checkout from Jenkins was successful. But the subsequent checkouts are failing with timed-out error.
The desired output is successful checkout and build.
18:04:53 ERROR:…

CK5
- 1,055
- 3
- 16
- 29
2
votes
1 answer
Hadoop - timed out when dropping a Hive table
I get an error when trying to drop a table in hive:
> drop table my_table;
Error:
FAILED: Execution Error, return code 1 from
org.apache.hadoop.hive.ql.exec.DDLTask.
org.apache.thrift.transport.TTransportException:
…

Alg_D
- 2,242
- 6
- 31
- 63