We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To be able to select one of the "preferred" network interface which InetAddress doesn't allow.
Add the support of spring InetUtils to levrage the "spring.cloud.inetutils.[...]" configurations in DefaultApplicationFactory.getLocalHost()
private final Optional<org.springframework.cloud.commons.util.InetUtils> inetUtils protected InetAddress getLocalHost() { try { inetUtils.map(InetUtils::findFirstNonLoopbackAddress).orElse(InetAddress.getLocalHost()); } catch (final UnknownHostException ex) { throw new IllegalArgumentException(ex.getMessage(), ex); } }
The text was updated successfully, but these errors were encountered:
The spring-boot-admin-client also needs to support clients that do not use spring cloud. So we can't just make this change.
What would be possible to add a special ApplicationFactory that will be autoconfigured when the InetUtils are present.
Do you want to work on a PR for that?
Sorry, something went wrong.
Sure, will do
Hi, I am a new Open Source Contributor. I see this issue is for new guys. Can I take and work on this? If yes, please provide some insights.
Thanks for your cooperation.
No branches or pull requests
To be able to select one of the "preferred" network interface which InetAddress doesn't allow.
Add the support of spring InetUtils to levrage the
"spring.cloud.inetutils.[...]" configurations in DefaultApplicationFactory.getLocalHost()
The text was updated successfully, but these errors were encountered: