-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Fix 1654 #1655
Fix 1654 #1655
Conversation
Configure Renovate
@@ -57,19 +57,12 @@ public void initialize(BootstrapRegistry registry) { | |||
if (hasConfigServerInstanceProvider()) { | |||
return; | |||
} | |||
registry.registerIfAbsent(KubernetesDiscoveryProperties.class, context -> { |
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 matter the result of getDiscoveryEnabled(context)
(meaning drop this check), always call : KubernetesConfigServerBootstrapper::createKubernetesDiscoveryProperties
} | ||
return createKubernetesDiscoveryProperties(context); | ||
}); | ||
registry.registerIfAbsent(KubernetesDiscoveryProperties.class, |
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.
Why did you remove the check to see if discovery is enabled?
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.
by accident... thank you
No description provided.