-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
[JENKINS-33596] Delete more of UDPBroadcastThread & DNSMultiCast
#5720
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
Changes from all commits
cb041df
1b515b2
ac0979b
d908a3f
ff6601a
a6bc646
9959f3b
7b0cede
711f3ae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,31 +1,15 @@ | ||
| package hudson; | ||
|
|
||
| import static hudson.init.InitMilestone.COMPLETED; | ||
|
|
||
| import hudson.init.Initializer; | ||
| import java.util.logging.Logger; | ||
| import jenkins.util.SystemProperties; | ||
| import org.kohsuke.accmod.Restricted; | ||
| import org.kohsuke.accmod.restrictions.NoExternalUse; | ||
|
|
||
| /** | ||
| * Registers a DNS multi-cast service-discovery support. | ||
| * | ||
| * @author Kohsuke Kawaguchi | ||
| * @deprecated No longer does anything. | ||
| * @deprecated No longer does anything. Only here to prevent errors from old versions of tools like {@code JenkinsRule}. | ||
| */ | ||
| @Deprecated | ||
| @Restricted(NoExternalUse.class) | ||
| public class DNSMultiCast { | ||
| private static final Logger LOGGER = Logger.getLogger(DNSMultiCast.class.getName()); | ||
|
|
||
| public static boolean disabled = SystemProperties.getBoolean(DNSMultiCast.class.getName()+".disabled", true); | ||
|
|
||
| @Initializer(before=COMPLETED) | ||
| public static void warn() { | ||
| if (!disabled) { | ||
| LOGGER.warning("DNS multicast capability has been removed from Jenkins. More information: https://www.jenkins.io/redirect/dns-multicast"); | ||
| } | ||
| } | ||
| public static boolean disabled = true; | ||
|
|
||
| } | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,7 +81,7 @@ THE SOFTWARE. | |
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>jenkins-test-harness</artifactId> | ||
| <version>1589.vc23fca066d5c</version> | ||
| <version>1626.v46b0925e70db</version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are the test failures related to updating this?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any idea why dependabot isn't updating this?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No idea offhand. |
||
| <scope>test</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
|
|
||
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.
FTR tests still run with the older
JenkinsRule