Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
128 views

Tried following code with a wrong serverAddress: final int CONNECT_TIMEOUT = 5000; // 5000 ms = 5 seconds final int SO_TIMEOUT = 5000; try (Socket socket = new Socket()) { socket.setSoTimeout(...
Mayoares's user avatar
  • 1,284
1 vote
1 answer
194 views

I have a php shell script that runs at scheduled intervals via launchd. The script has a 2 minute php timeout, but I understand that time spend in curl_exec( ) doesn't count towards that. But I also ...
l008com's user avatar
  • 1,776
-1 votes
1 answer
63 views

In Flet version 0.83.0 session is dropping really fast but in version 0.82.2 it was not that fast. Because of this my pages keep on reinitializing (becomes empty page, looses previous data)  Looks ...
sguha's user avatar
  • 19
Advice
0 votes
2 replies
93 views

So I have an HTML-file like this <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=...
makxca's user avatar
  • 34
2 votes
1 answer
118 views

I am running many Bayesian models in parallel and want to skip models that take longer than a certain amount of time (e.g., 10 seconds). To do this, I wrapped rstanarm::stan_glm() inside R.utils::...
MochaModeler's user avatar
0 votes
1 answer
217 views

I'd like to add a unit test for Go's http.Server.Shutdown() timing out, but there are no connections held open when the shutdown signal is sent, so it never gets to checking for timeouts, even though ...
theory's user avatar
  • 10k
2 votes
1 answer
84 views

I'm trying to make a web page that can query a game server for call of duty 2, i seem to get issues with create a socket_create() im using php 8.3 the error i get is: Fatal error: Uncaught TypeError: ...
Daz Holmes's user avatar
1 vote
1 answer
76 views

I have the following code to execute a PUT to a given address by means of the restc-cpp library: auto rest_client = RestClient::Create(); auto done = rest_client->ProcessWithPromise([&mess,...
Lorenzo Eboli's user avatar
Advice
0 votes
1 replies
85 views

We have several applications built in .NET Framework 4.7.2 that uses .NET Identity for authorisation and authentication. I am trying to implement a session timeout, in line with OWASP recommendations. ...
Martin Vaughan's user avatar
0 votes
0 answers
68 views

I have this with node 25.0.0 and Windows and puppeteer. Basically the get_card_search_results is called and it loads a page that features lazy loading. It will "scroll" the page down to ...
raphael75's user avatar
  • 3,298
2 votes
1 answer
99 views

I’m using GridDB Cloud with the official Python client to insert real-time IoT data into a time-series container. The script runs continuously, but after a few hours I get a connection timeout and ...
Imtiaz's user avatar
  • 67
7 votes
0 answers
1k views

I have been trying out Gemini Agent. One problem I get very often is that I ask it for a code change, it thinks and responds with t's understanding of my request (usually it's pretty close to what I ...
Paul Hodgson's user avatar
1 vote
1 answer
89 views

I have flask app, which we are running using gunicorn. App structure. % tree your_flask_app your_flask_app ├── __init__.py ├── app.py └── routes ├── __init__.py ├── data.py └── shared.py ...
NPatel's user avatar
  • 21.4k
1 vote
0 answers
118 views

I have the following simple Postgres stored procedure created that just sleeps a number of minutes as passed in to call: create procedure sleep_test(delay_minutes numeric) language plpgsql as $$ ...
Rumtis's user avatar
  • 23
-1 votes
1 answer
96 views

Bit Flows Pro flow stops early (~20–21s) with fewer nodes than expected on WordPress (OpenLiteSpeed + lsphp). Where is the timeout coming from and how do I raise it? Environment WordPress + Bricks ...
Prego's user avatar
  • 1
1 vote
1 answer
81 views

for some reason the connection timeout does not seem to work when connecting to a Firebird database. For example, if an incorrect IP address is specified, the script hangs and waits for a long time. #!...
Сер За's user avatar
1 vote
0 answers
73 views

I am running a FastAPI application on an Azure Virtual Machine. This application uses langchain-aws methods (ChatBedrockConverse) to make calls to the AWS Bedrock service. After a period of inactivity ...
Surya's user avatar
  • 11
2 votes
1 answer
588 views

I'm trying to fetch data using Algolia Search in Flutter and the data does get fetched the problem is that it gives the following error: DioException (DioException [connection timeout]: The request ...
Ayesha Arshad's user avatar
0 votes
0 answers
68 views

When I try to upload a new version 0.8.2 of my python software with pdm to PyPi I get the error [WriteTimeout]: The write operation timed out while the upload works for another project with very ...
flukx's user avatar
  • 101
-2 votes
1 answer
130 views

I have next.js application and i need to get metadata from api. i've written basic fetch request in generateMetadata in page.tsx. In local or any other https domain everything is working fine but in ...
Maga Lutfullaev's user avatar
0 votes
1 answer
126 views

I am trying to read this https page using java https://www.hkex.com.hk/eng/stat/smstat/dayquot/d250602e.htm but always hit Read timed out. Here is my code try { URL url = new URL("https://...
senderj's user avatar
  • 418
1 vote
1 answer
71 views

I have the following requirement that I can't really figure out how to solve. Using Polly in C#/.NET: Given an user defined timeout and an internally/system defined retry strategy. How can I get the ...
Esben Bach's user avatar
1 vote
1 answer
611 views

I have a Blazor Server C# application in .NET 9 and I use a service to handle remote API calls. I would like to set timeout for requests globally like this: var timeoutSec = builder.Configuration....
SZL's user avatar
  • 907
0 votes
0 answers
35 views

I have a problem with a timeout during the build on my VPS machine. About VPS: VPS 2 vCPU Is this enoguht for stack strapi + nextjs + docker? Strapi API Error (header): TypeError: fetch failed at ...
MilosN's user avatar
  • 13
1 vote
1 answer
472 views

I am using apache superset to connect to postgresql. I am facing "Gateway Timeout" in Dashboards where few charts come up but few errors out. In fact, when I click on "View Query" ...
Rakesh Ranjan's user avatar
0 votes
0 answers
292 views

I'm using hey-api's Fetch API client and have been trying to set a timeout time on requests, but I'm running into issues and can't seem to figure it out. Has anyone managed to get this working, or ...
Adriaan Marain's user avatar
0 votes
1 answer
71 views

send a request and it returns with timeout Integration Team are Using Fortigate as a firewall and NGINX for some reasons so we use VPN TO Access , requests always succeed but at once it failed with ...
Ahmed Mostafa's user avatar
1 vote
0 answers
22 views

In my Test app, using TestStack.White nuget package (last available version: 0.13.3) I need to search an Item with a given AutomationId in a container (main app window). I want to wait for it for max ...
Bug Raptor's user avatar
-1 votes
2 answers
76 views

What is the best way to dynamically change the timeout of an application if we are using IHttpClientFactory? I don't mean I want a different timeout for different addresses or endpoints - I mean all ...
Brad's user avatar
  • 1,423
1 vote
0 answers
54 views

my team and I are trying to figure out how to incorporate git into our weird use cases. I'll explain what the use cases are and what we thought about handling it. Then I'll ask my question about the ...
krusion's user avatar
  • 129
-2 votes
1 answer
213 views

First the code I have: for last < end { // HERE the linter is complaining with: // nested context in loop (fatcontext) ctx, cancel = context.WithTimeout(...
unsafe_where_true's user avatar
2 votes
0 answers
145 views

I'm experiencing persistent timeout issues when connecting ClickHouse (v25.2.2.39) to SQL Server through the ClickHouse JDBC Bridge (v2.1.0). Simple queries work fine: SELECT * FROM jdbc('DWH', '...
Stneick's user avatar
  • 21
2 votes
1 answer
57 views

After upgrading my version of Flutter to 3.29.3 : Flutter 3.29.3 • channel stable • https://github.com/flutter/flutter.git Framework • revision ea121f8859 (2 weeks ago) • 2025-04-11 19:10:07 +0000 ...
dusk's user avatar
  • 45
-3 votes
1 answer
145 views

tl;dr - I want a complete list of mechanisms/patterns that can result in java code that runs forever and cannot be interrupted There are a number of things that can make a java thread fail to ...
Edward Peters's user avatar
1 vote
0 answers
78 views

I have a situation where a multithreaded service is making parallel calls to user-submitted code over which I have no control. I'm hoping to find a mechanism by which these calls can be timed out if ...
Edward Peters's user avatar
1 vote
1 answer
144 views

I'm trying to set up something in ZIO to timeout other tasks, but not finding anything which is able to interrupt them reliably. import zio.* object MainApp extends ZIOAppDefault { def spinny(): ...
Edward Peters's user avatar
0 votes
2 answers
263 views

I have an API client that calls an API hosted in Kubernetes and using kong for gateway API, which is built using ASP.NET 6. We've also configured a Polly policy to retry the request if it receives an ...
Dhrup's user avatar
  • 89
6 votes
6 answers
7k views

I’m using langgraph in a Jupyter notebook to build a simple state machine and then render the graph with Mermaid via mermaid.ink. In one snippet of code, naming the node "A" causes a timeout ...
Ohm's user avatar
  • 2,512
-1 votes
1 answer
70 views

My register server action works on local host but breaks when deployed to digitalocean. I have tried running it on the server in development mode, but that doesn't make a difference. I'm receiving a ...
sam's user avatar
  • 1
-1 votes
1 answer
67 views

Trying to pull data from FAA N Number results but request.get() doesn't seem to be working. I followed this tutorial (https://www.youtube.com/watch?v=QhD015WUMxE) and was able to scrape the website he ...
Emily Stauf's user avatar
0 votes
1 answer
101 views

I'm getting a following timeout error when execution within the graphql query handler takes longer than 3.01 sec. { "data": { "service_call": null }, "...
Deil's user avatar
  • 512
2 votes
1 answer
222 views

I have project that involves taking a picture every one hour with a Raspberry and saving it to Google Drive. I'm using the google-api-python-client to connect to a Google Drive and apscheduler to ...
Pablo Rios's user avatar
0 votes
1 answer
188 views

How are DNS query retries controlled using Simple Resolver in DNSJava? Using the same resolver, we see retries of 2 and in some cases 3. It is not clear as to how it is retried. Any help in this ...
pradeep's user avatar
  • 45
0 votes
1 answer
83 views

I am creating a dataset on AWS S3, for their Opendata program. I am fetching audio files, which are already stored on S3. I then segment them into smaller audio chunks, and putting those on S3 again. ...
user305883's user avatar
  • 1,749
0 votes
1 answer
75 views

class MyView(discord.ui.View): async def on_timeout(self): print('TIMEOUT') ... If I set the timeout time to 15 minutes, it works, but if I set it to 24 hours, it doesn't work. ...
cmaxys's user avatar
  • 1
0 votes
1 answer
45 views

I have some code that executes database queries, like so: self.db_cursor = self.db_conn.cursor(buffered=False) self.db_cursor.execute(query) Now I want to add a timeout, so that long queries are ...
pecks's user avatar
  • 340
0 votes
1 answer
69 views

I have a function that calls an API def somefunction(): #.... try: response = requests.post(api_url, json=payload, timeout=timeout) response.raise_for_status() ...
KansaiRobot's user avatar
  • 10.7k
0 votes
1 answer
51 views

I'm leveraging Puppeteer to open a website from a list of URLs, grab a few pieces of data, then write to CSV. While there are a few elements that could be collected from a given URL, not all URLs will ...
newnewnew's user avatar
0 votes
1 answer
481 views

I use org.springframework.mail.javamail.JavaMailSender to send emails via smtp.office365.com. It works most of the time but sometimes emails are not send because of connectivity issue. smtp.office365....
ilhan's user avatar
  • 9,113
0 votes
2 answers
169 views

From within my ASP.NET application (.NET Framework 4.8) I invoke an external process via Anonymous Pipes. Theoretically, it could happen that the external process hangs (for whatever reason) when my ...
Jan Köhler's user avatar
  • 6,130

1
2 3 4 5
196