-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Travis build stalling #373
Comments
I've managed to track this down to what looks like a race condition, introduced when we changed the selenium container wait strategy to be based on log output. It occurs at this line in
I see a thread blocked reading a socket inside of selenium's RemoteWebDriver. I imagine we're trying to initialise the driver too quickly now, and we're hitting this intermittently. I'll try to resolve by wrapping the affected line inside of a timeout-and-retry construct. |
@rnorth 👍 if it fixes this annoying freezing, that would be awesome! |
* Add time limit and retry to instantiation of RemoteWebDriver Resolves #373 * Update changelog
We seem to be getting this reasonably frequently in our Travis output:
We need to investigate why this is happening and fix it. It would also be useful to know whether this is a problem with our CI setup or an actual bug that might affect users.
The text was updated successfully, but these errors were encountered: