connection-timeout Questions

4

After installing git on my new work computer, generating my ssh key and adding it on gitlab, I'm trying to clone a project but I get the following error: ssh: connect to host <private-domain>...
Gans asked 16/2, 2022 at 11:26

2

Solved

I am currently experiencing some issues regarding the URLSession, while trying to post data to my web server. This however, works perfectly. What seems to not work, is the timeout I have set. This ...
Overturn asked 21/10, 2016 at 13:27

4

I did python debugging in VS code. The following is the launch.json file: { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For m...
Freestone asked 19/4, 2022 at 5:24

3

Solved

I have below architecture in my project My UI Service(Port 8080) making Feign call to Gateway Service(Port 8085). My Get call from UI service is " http://localhost:8080/invoice-list?startDate=2018...

1

I am trying to learn SQL, through a Udemy course, so If answers could be easy to follow, that would be appreciated. I am trying to connect to Postgre SQL 15, but every time I try to connect, I get ...
Janeanjaneczka asked 24/8, 2023 at 14:23

4

Solved

In command below I enable file /dev/tcp/10.10.10.1/80 both for reading and writing and associate it with file descriptor 3: $ time exec 3<>/dev/tcp/10.10.10.1/80 bash: connect: Operation tim...
Anetteaneurin asked 19/6, 2014 at 22:37

2

Solved

I'm working on a node.js application that connects to a MySQL server. The following likely isn't node.js-specific, though. Currently, my code initializes a MySQL connection at the application star...
Ethics asked 30/4, 2014 at 22:25

8

Solved

Is it possible to increase CloudFlare's time-out? If yes, how? My code takes a while to execute and I wasn't planning on Ajaxifying it the coming days.
Dropkick asked 22/7, 2016 at 22:35

3

Reason behind error524 connection timeout. How to fix it even though the website havent cover high storage Server origin that is being used is from India. website :https://motogenes.com/ trying to ...
Remarque asked 9/9, 2022 at 11:47

11

Solved

My command keeps timing out, so I need to change the default command timeout value. I've found myDb.Database.Connection.ConnectionTimeout, but it's readonly. How can I set the command timeout in ...
Threadbare asked 8/10, 2012 at 20:26

27

I am trying to connect to remote server via ssh but getting connection timeout. I ran the following command ssh [email protected] and getting following result ssh: connect to host ...
Donley asked 29/8, 2012 at 6:41

3

Where can I find information about Hikari properties that can be modified at runtime? I tried to modify connectionTimeout. I can do it and it will be modified in the HikariDataSource without an ex...
Sergu asked 15/3, 2018 at 13:52

3

Solved

I have a Sql Alchemy application that is returning TimeOut: TimeoutError: QueuePool limit of size 5 overflow 10 reached, connection timed out, timeout 30 I read in a different post that this ...
Empoverish asked 25/7, 2014 at 13:29

6

Solved

How to add CommandTimeout to connection string in web.config? I tried: <add name="ConnectionString" connectionString="Data Source=;Initial Catalog=;Persist Security Info=True;User ID=sa;Pass...
Riojas asked 19/12, 2013 at 13:34

2

I'm running an embedded jetty server (jetty 6.1.24) inside my application like this: Handler handler=new AbstractHandler() { @Override public void handle(String target, HttpServletRequest requ...
Glynas asked 26/3, 2011 at 20:11

3

We're running into an issue were we execute a large number of queries at once (large being 100-200) using Dapper async and end up getting timeout exceptions. I think what is happening is that Dappe...
Klan asked 4/3, 2018 at 1:24

3

We are running following stack on our web server Varnish + Nginx + FastCGI (php-fpm) on RHEL 6.6 Its a dynamic website with different result sets everytime and has around 2 million url's indexed ...
Robbegrillet asked 4/1, 2016 at 14:11

7

Solved

I have the following setup: final OkHttpClient okHttpClient = new OkHttpClient(); okHttpClient.setReadTimeout(5, TimeUnit.SECONDS); okHttpClient.setConnectTimeout(5, TimeUnit.SECONDS); RestAdapter...
Jadeite asked 28/4, 2015 at 13:58

5

Solved

I'm seeing the JDBC MySQL driver consistently fail connection attempts to a stopped MySQL after 10 seconds, but I'd like to change that timeout. I tried adding ?connectTimeout=2000&socketTimeou...
Ileum asked 25/1, 2014 at 13:12

1

Solved

OpenShift 4.6 There is a basic set up in OpenShift: [Pod <- Service <- Route]. A service running in the pod have an HTTP endpoint responding for 90 seconds or longer. And in some cases it is ...
Punt asked 13/6, 2021 at 9:38

6

Solved

In my application I connect to server to authenticate users. This is code: try { Properties prop = new Properties(); prop.put("mail.smtp.starttls.enable","true"); prop.put("mail.smtp.auth", "tr...
Meras asked 23/9, 2013 at 23:13

2

I am trying to process inserts Kafka Streams aggregation results to Cassandra. But I am getting below timeout error during connection after 500ms. Why this occur and how can I increase this timeout...
Pinchhit asked 16/6, 2020 at 13:50

3

I am trying to run a stored procedure on my SQL database from the node server using seriate. however i get the follwoing error and i am not sure why. I'd really appreciate your help on it. Error: ...
Ohaus asked 3/5, 2016 at 18:4

4

I have Nginx + uWSGI for Python Django app. I have the following in my nginx.conf: location / { include uwsgi_params; uwsgi_pass 127.0.0.1:9001; uwsgi_read_timeout 1800; uwsgi_send_timeout 3...
Gabelle asked 22/4, 2013 at 7:28

2

I went to the documentation and found out these # The time after which an idle connection will be automatically closed. # Set to infinite to completely disable idle connection timeouts. idle-tim...
Sapele asked 22/6, 2017 at 7:6

© 2022 - 2024 — McMap. All rights reserved.