-
Notifications
You must be signed in to change notification settings - Fork 98
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
Saucelabs errors sometimes not reported #177
Comments
Ooh I like this error report, thanks. Will fix... |
I did report this to SauceLabs as well so it might get resolved but then again it probably better to fullproof it. There might be other config that creates this problem. |
Also to clarify my report, the error occurs on the status calls, not the job creation call. SauceLabs thinks it created the job because it returns a job id but it actually didn't. |
Oh! A job id is returned, but the Job itself never starts at all? ever? On Mon, Dec 15, 2014 at 6:17 AM, Laurent Goderre [email protected]
|
The UI doesn't even list the job. They aware of the bug and are working on it on their end but it is possible that other combination could trigger this behavior. |
For what its worth, I'm currently seeing something similar:
No job shows up in the Dashboard. |
I discovered this bug because our task is using environment variables that were not set on my local setup. A
null
value was added to the tags array which created an invalid JSON. Saucelabs instead of returning a 400 or any HTTP error, it returns a 200 but adds a"status": "test error"
.This error is not caught and creates a un-ending loop until the timeout is reached.
The text was updated successfully, but these errors were encountered: