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
0
votes
0 answers

Cassandra query timeout for a few partition keys

I have the a timeout issue showing up with few partition keys on the same table. All queries were working fine until yesterday on the same partition keys. All other queries on the same table are just fine as expected. I tried to query the same…
bhupi
  • 1
  • 1
0
votes
2 answers

How to troubleshoot intermittent org.openqa.selenium.TimeoutException: timeout

We leverage Selenium for our website UI automation test. We establish a lab of 10 machines installed Windows 7 as the only OS. And the automation tests (>800) would be dispatched to those machines evenly once each day. However, we come across below…
0
votes
2 answers

Testing AngularJS with Protractor- Jasmine spec appears to time out on 'expect' clause. Resetting the WebDriver Control Flow?

I am currently developing a set of tests using Protractor to test an AngularJS app that my company are developing. When I currently run through my tests, I am getting a failure on one of them, but can't figure out why... The error message says: A…
Noble-Surfer
  • 3,052
  • 11
  • 73
  • 118
0
votes
0 answers

Expiration Time out VB.Net

I'm turning an SQL Request in my application which is very big and need a lot of traitement. When I execute the request in SQL server, it takes time, but I have the result, but when I execute it in my application, after many seconds, it gives me an…
user8002153
0
votes
0 answers

C# Azure Service Bus Multiple Exceptions Thrown For OnMessageAsync

i've been implementing a listener that responds to an OnMessageAsync. This works exactly as intended but in the debug feed it continually triggers these exceptions: Exception thrown: 'System.ServiceModel.FaultException`1' in…
0
votes
1 answer

Increase timeout duration using CloseableHttpClient

We have an application where we do some internal http calls to a REST API to fetch the data. But some requests are taking longer than expected so I am trying to increase the timeout duration. I tried below things : RequestConfig requestConfig =…
Rakesh Gourineni
  • 1,361
  • 5
  • 16
  • 30
0
votes
0 answers

Building Socket Connections between Servers: Timeout exception

I'm new to Java Socket programming. What I'm trying to do is make socket connections between multiple servers (Simulation of a Distributed System). When I try to do so with the following Java code, it returns a timeout Exception (other servers are…
0
votes
1 answer

Python ftplib.error_temp 421 Timeout, looking for the best way to treat it

First thank you for reading this. My problem is that I kinda got behind the error by making an infinit loop "while True" then I try my commands, Navigating, listing ... I made an excepting to get me past this error 421 but am not satisfied. Here…
MTS
  • 33
  • 3
  • 11
0
votes
0 answers

WebClient TimeOut exception c#

I have a problem using a WebClient in ASP.NET MVC with c#. I can't call my BackEnd using webclient anymore. It used to work but for some reason now I always get a TimeOut Exception. The thing is, I can call the webservice from chrome and it works,…
Louuss
  • 3
  • 2
0
votes
2 answers

Timeout error in TestNG

package ant; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.interactions.Actions; import…
Tester
  • 51
  • 1
  • 12
0
votes
1 answer

Stringe timeout trigger error

I've a trigger in a sql server database with a very strange behavior, these are the strange instructions: ... EXEC [ope].[spMissionDepartment] @AircraftId = @vnAircraftId RAISERROR('test error', 16, 1) END TRY BEGIN CATCH SELECT…
0
votes
0 answers

TcpSocketClient- UnhandledException when I try read a response inside of a Task that not arrived yet

I'm using this library(https://github.com/rdavisau/sockets-for-pcl) to communicate with a TCP Server, that sends me when a event was generated, then, I have to verify all the time if the TCP Server sent to me a event, but if I try read anything…
0
votes
0 answers

Selenium check if page loaded, by using title tag in python

I'm just trying to figure out how to check if the title of a specific page has loaded in selenium using python, and if it hasn't then go back to the beginning (continue) However, it's not working at all, when I get a 500 error, or the page does not…
Ke.
  • 2,484
  • 8
  • 40
  • 78
0
votes
1 answer

SqlDataAdapter.fill timeout, query under 5 sec

I have a SqlDataAdapter that is being populated with 33k rows of data (about 15 columns). When running query in MS SSMS, i get my rows in about 5 sec. When using my code, I get a timeout, even by setting the timeout parameter to 120 sec : …
Wingi
  • 21
  • 4
0
votes
1 answer

"Timeout" and "A transport-level error" exception during multiple simple queries

I have a console application that moves data from one database to another. App reads data, updates it and writes into another db. Queries are very simple and they are logged in case of error. So I can try to execute each of them separately and it…