532 questions
0 votes
0 answers
45 views
Karate UI tests failing with connection refused and exit code 137 when running Chrome
I’m running Karate UI tests (Karate 1.5) with type: 'chrome'. The non-UI (API) tests run fine, but the UI-based tests frequently fail with: [WARN] [com.intuit.karate.shell.Command.run] - exit code was ...
0 votes
3 answers
599 views
Apache http client 5 timeout is not working - version httpclient5:5.4.1
I want to configure a timeout of 3 seconds against https://httpbin.org/delay/5 which respond back after 5 second only. This is to make sure a service which takes more than three second is doing a ...
0 votes
0 answers
82 views
Blazor .NET 8 or 9 - Error HttpConnection.ProcessRequestsAsync QuicTransportOptions
I get 100+ of these errors none stop on my Blazor Server. I don't know where to begin to find this error. Debug is showing no issues, server app runs with zero issues for weeks. But I keep getting ...
0 votes
1 answer
357 views
Netty Server not processing HTTP Requests after using Server Bootstrap for customizing
I have a spring reactive-based Microservice which is using Netty Server version 4.1.101.Final. It was working completely fine and processing all the HTTP requests that I fired. Now I want to catch ...
2 votes
0 answers
803 views
ConnectionRefusedError When try to do embedding in RAG
I wanted to write Rag and using llama3 on Google Colab and I used the following code: #### INDEXING #### # Load Documents loader = WebBaseLoader( web_paths=("https://lilianweng.github.io/...
1 vote
0 answers
105 views
urllib3 warning ReadTimeoutError while connecting to Nominatim's geolocator
The code below code to extract pincodes, but raises the error below. How to work around this? def get_zipcode(df, geolocator, lat_field, lon_field): location = geolocator.reverse(str(df[lat_field])...
0 votes
0 answers
83 views
Downloading Web Page with Download Manager
I am Using Download Manager for Downloading Webpage URLS, which may have extension .txt/.pdf...Some Http Links like "www.abc.com" cant be opened once downloaded The Following is the code I ...
0 votes
1 answer
1k views
Spring Cloud Open Feign: HttpURLConnection and Apache HttpClient
When using Feign, it defaults to using HttpURLConnection. I anticipated performance improvements by switching to Apache HttpClient for connection pooling. However, in my tests, the response time ...
1 vote
1 answer
2k views
meaning of PoolingHttpClientConnectionManager logs "total available"
I'm using PoolingHttpClientConnectionManager to configure how many concurrent requests I could send to servers, my code looks like private RestTemplate createRestTemplate(HttpHost proxy) throws ...
0 votes
0 answers
35 views
Problem when trying to use (getResponseCode())
I have a problem in my code, I'm programming for a platform called FLUIG, in this context I need to make a call to an endpoint, but when I try to use the getResponseCode() method my code dies. var ...
1 vote
0 answers
114 views
Http connection error while starting up R studio
I was using RStudio 2023.03.0+386 . I was using metaboanalystR and pathview package on R for data analysis. Meanwhile, I wanted to change the working directory - and that's when it showed an error. ...
0 votes
0 answers
4k views
Getting RestTemplate (Connection Reset) Despite everything is correct
I'm using Spring Boot RestTemplate to call REST API. On PROD, I'm getting below exception: org.springframework.web.client.ResourceAccessException: I/O error on POST request for "https://<host&...
0 votes
0 answers
970 views
HTTPConnectionPool Max retries exceeded with url" Error in Python Selenium
I have a web application where users can perform searches on specific retailers and view the results in tables. When two users start searching on t:he same retailer at the same time, after a while, I ...
5 votes
2 answers
3k views
How to close HttpClient? Why there is no .close() method in the API?
I want to use so called "new HttpClient since Java 11" java.net.http.HttpClient. To me, it is very important to make sure that the TCP connection gets closed after an HTTP roundtrip ...
2 votes
1 answer
795 views
Getting 400 Bad Request while calling RestAPI in eclipse, but working in Postman
I have a function which takes 2 input - JSON filepath RestURL After calling the function, it should return the output as JSON. But the problem here, it is throwing 400 Bad request error. Below is ...