-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Remove flaky test #15269
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
Remove flaky test #15269
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} | ||
|
||
// A connection has been closed, try again. | ||
string responseText = await SendRequestAsync(address); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would this test be reliable if we removed just this last request? Looking at the last failure, that seems to be where the problem is.
Do we have any other tests that verifies HttpSysOptions.MaxConnections
actually does anything?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have any other tests that verifies
HttpSysOptions.MaxConnections
actually does anything?
No, but all we've implemented is passing the option to HttpSys. There is no functionality at our layer to verify.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we stopped passing the option to HttpSys, would any tests fail other than this one we're removing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have any other tests that verifies
HttpSysOptions.MaxConnections
actually does anything?
Yes
FYI I just updated another test that was verifying maxconnections and was flaky. |
Talked with @Tratcher and we think the test wasn't doing much and is flaky, so we're deleting it.