You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests in palantir/atlasdb#5233 would fail because of NoHttpResponseException. The nature of this test is that it gracefully shuts down servers to test resiliency to that scenario. The dialogue clients are setup with a single URL only, meaning that all previously open connections are closed, and the request fails because it blows through it's retry limit.
What did you want to happen?
The request should succeed: we know the server is up because the tests await for that.
The text was updated successfully, but these errors were encountered:
We already have exponential backoff in RetryingChannel; the problem here is that all the connections are blown, because the server restarted. But we cannot know that without doing a read sadly.
I think this isn't much of a problem in prod, because you'll most likely land on another host, but in this test it fails.
What happened?
Tests in palantir/atlasdb#5233 would fail because of
NoHttpResponseException
. The nature of this test is that it gracefully shuts down servers to test resiliency to that scenario. The dialogue clients are setup with a single URL only, meaning that all previously open connections are closed, and the request fails because it blows through it's retry limit.What did you want to happen?
The request should succeed: we know the server is up because the tests await for that.
The text was updated successfully, but these errors were encountered: