Skip to content
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(java17): remove long-deprecated import that doesn't work with JRE17 (backport #1170) #1171

Merged
merged 1 commit into from Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -23,7 +23,6 @@ import org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAuto
import org.springframework.boot.builder.SpringApplicationBuilder
import org.springframework.boot.context.properties.EnableConfigurationProperties
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer
import sun.net.InetAddressCachePolicy

import java.security.Security

Expand All @@ -47,7 +46,6 @@ class Main extends SpringBootServletInitializer {
* We often operate in an environment where we expect resolution of DNS names for remote dependencies to change
* frequently, so it's best to tell the JVM to avoid caching DNS results internally.
*/
InetAddressCachePolicy.cachePolicy = InetAddressCachePolicy.NEVER
Security.setProperty('networkaddress.cache.ttl', '0')
}

Expand Down