-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
Disable failing test in UDP broadcast #4467
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.
All for the disabling, but I think we should use @Ignore
so the ignored tests still show up in the reports as such.
Thanks!
@@ -55,7 +55,8 @@ private static void updatePort(int newValue) throws Exception { | |||
* Old unicast based clients should still be able to receive some reply, | |||
* as we haven't changed the port. | |||
*/ | |||
@Test public void legacy() throws Exception { |
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.
I think we should use the standard @Ignore
annotation, is there a compelling reason not to use this?
I thought that the reason to disable was:
Since the feature is being removed, is the better choice to delete the tests rather than disable it? |
This is a non-binding comment but I agree that if #4460 is in flight disabling is more the way to go |
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.
Fully agree since the removal is in flight we should just disable this test instead of spending cycles on it
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.
Whatever works.
I've got lots of approvals on #4460 and only one area of possible concern but haven't heard back from anyone that actually uses it. I'm hopeful we'll get it merged. I've always had failures with these tests on my machine, so I was reluctant to try and fix anything here. I'm in favor of the easiest way to disable the tests until we can get the other PR in. |
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.
Prefer to either @Ignore
or delete, but good enough for now.
FTR
not tied obviously to any SCM commit. |
Disable failing test in UDP broadcast
Currently all builds are failing due to failures in UDP broadcast tests. We have a pending PR to remove the feature completely due to security vulnerabilities but before the PR is merged, we need to keep the other PRs passing tests.
Reference for the other one: #4460
FYI @jeffret-b