Questions tagged [timeoutexception]

TimeoutException is thrown when the time allotted for a process or operation has expired.

TimeoutException is thrown when the time allotted for a process or operation has expired.

427 questions
3
votes
2 answers

C# virtual serial port timeoutexception on write

i'm having a problem with virtual serial ports in C#: when i call the Write function, it automatically throws a TimeOutException, but the client receives the data. It only happens with virtual ports (i'm using Free Virtual Serial Ports from…
tincho87
  • 349
  • 1
  • 4
  • 12
3
votes
2 answers

Issue with timeout within TransactionScope in C#

I have an insert method that works fine with smaller data sets, but once the data sets get beyond a certain size , the method times out, regardless of what i set in the initial transaction scope. the insert methods in the code use simple stored sql…
A.D
  • 31
  • 1
  • 5
3
votes
2 answers

Why is a TimeoutException not faulting my channel?

I have a duplex WCF service and client running on the same machine. The client is configured to have 15 second timeouts:
Eric
  • 5,842
  • 7
  • 42
  • 71
3
votes
0 answers

Operation timed out using CouchbaseClient

I am getting Timeout exceptions even though there is not much load on the Couchbase server. net.spy.memcached.OperationTimeoutException: Timeout waiting for value at net.spy.memcached.MemcachedClient.get(MemcachedClient.java:1003) at…
Amit Daga
  • 127
  • 4
  • 13
2
votes
3 answers

System.TimeoutException when calling wcf service from Biztalk

I am getting the exception shown below. BizTalk is able to call the service when there is very light load. But once I increase the load and the number of messsages to transmit increases after a while I keep getting this message for all the calls to…
RRR
  • 575
  • 1
  • 11
  • 25
2
votes
0 answers

android.hardware.camera2.impl.CameraCaptureSessionImpl.finalize() timed out

The crash log below was reported in the video chat screen implemented using camera2 and agora library. Fatal Exception: java.util.concurrent.TimeoutException: android.hardware.camera2.impl.CameraCaptureSessionImpl.finalize() timed out after 10…
Taewoo Kim
  • 21
  • 2
2
votes
1 answer

Python Asyncio TimoutError is not using builtin TimeoutError as base class

Why is asyncio not using the builtin TimeoutError as base class? Instead of writing try: await asyncio.wait_for(asyncio.sleep(10), timeout=5) except asyncio.TimeoutError: pass one could write try: await…
Semnodime
  • 1,872
  • 1
  • 15
  • 24
2
votes
1 answer

How to solve gspread API ReadTimeout limit (Python)?

I am using gspread module to read data from a google sheet, however, some gsheets are somehow too large, and whenever i try to read(get) the values from the google sheet i get a timeout error as the following: ReadTimeout:…
2
votes
1 answer

Selenium TimeoutException when trying to click Cookies Agree

I am trying to crawl some articles from a website and before doing so, I need to click the "Cookies Agree" using Selenium in Python. But unfortunately, I keep getting either TimeoutException or NoSuchElementException! I've figured out that the click…
MongMong
  • 31
  • 6
2
votes
1 answer

Handle Guzzle timeouts with async promises

I am sending multiple async promises with a guzzle timeout set to 30, I am wondering how to capture if any promises timed out so that I can report on this error. Please see the code below. Essentially I want to use any responses I can before timeout…
pilotman
  • 624
  • 1
  • 6
  • 23
2
votes
1 answer

For loop web scraping a website brings up timeouterror, newconnectionerror and a requests.exceptions.ConnectionError

Apologies, I am a beginning at Python and webscraping. I am web scraping wugniu.com to extract readings for characters that I input. I made a list of 10273 characters to format into the URL and bring up the page with readings, then I used the…
2
votes
0 answers

AWS ALB Client TLS Negotiation Error Occurring on the Hour or Half Hour

I have a Scala application managed by ecs that makes a call through an alb to various python applications also managed by ecs. This application sends a significant amount of traffic through the alb (on the order of 750 requests/min). The problem is…
2
votes
0 answers

What would cause Google Apps Script to hang on GetSheetByName?

I managed to get this to happen with the simplest possible code: function test() { var ss = SpreadsheetApp.getActiveSpreadsheet(); Logger.log("before"); var st = ss.getSheetByName("STATUS"); Logger.log("after"); } Results in: Head test …
Seank
  • 21
  • 2
2
votes
2 answers

Can I use a wcf proxy after I get a TimeoutException?

The proxy isn't faulted after a timeoutexception, and i can still use it. Is it recommended to use that proxy or should i abort it and create a new one?
Ronen
  • 21
  • 2
2
votes
1 answer

Kibana unabe to connect to elasticsearch on windows

I am running elastic search 7.6 it is working ok on http://localhost:9200/ . I am able to use the REST API to add values to index. Now when i start up kibana 7.6, i get following error:- log [12:31:32.247] [info][plugins-service] Plugin "case" is…
rahul
  • 232
  • 1
  • 5
  • 13