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
When a trying to deploy registry using operator on a kubernetes server that only has ipv6 to its disposition registry fails to start
issue is located here: class: https://github.com/Apicurio/apicurio-registry/blob/5ceb8a89ae772172826b150b87ff9f1bf87263ec/storage/streams/src/main/java/io/apicurio/registry/streams/StreamsRegistryConfiguration.java
public HostInfo storageLocalHost(StreamsProperties props) { String appServer = props.getApplicationServer(); String[] hostPort = appServer.split(":"); log.info("Application server gRPC: '{}'", appServer); return new HostInfo(hostPort[0], Integer.parseInt(hostPort[1])); }
should be
public HostInfo storageLocalHost(StreamsProperties props) { String appServer = props.getApplicationServer(); String[] hostPort = appServer.split(":"); log.info("Application server gRPC: '{}'", appServer); return new HostInfo(hostPort[0], Integer.parseInt(hostPort[hostPort.length-1])); }
it should split on the last ':'
The text was updated successfully, but these errors were encountered:
carlesarnal
Successfully merging a pull request may close this issue.
When a trying to deploy registry using operator on a kubernetes server that only has ipv6 to its disposition registry fails to start
issue is located here:
class: https://github.com/Apicurio/apicurio-registry/blob/5ceb8a89ae772172826b150b87ff9f1bf87263ec/storage/streams/src/main/java/io/apicurio/registry/streams/StreamsRegistryConfiguration.java
should be
it should split on the last ':'
The text was updated successfully, but these errors were encountered: