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
If possible, please include a minimal code snippet here.
Go Version: please paste go version output here
go version
please paste `go env` output here
The text was updated successfully, but these errors were encountered:
func main() { service := web.NewService( web.Name("go.micro.api.conf"), ) if err := service.Init(); err != nil { panic(err) } service.Options().Service.Init(micro.Transport(grpc.NewTransport())) client := pconfig.NewConfigService("go.micro.srv.config", service.Options().Service.Client())
config.Init(client) router := Router() service.Handle("/", router) if err := service.Run(); err != nil { panic(err) }
}
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Running in IPv6 environment
panic: address [[::1]]:45375: missing port in address
How to reproduce the bug
If possible, please include a minimal code snippet here.
Environment
Go Version: please paste
go version
output hereThe text was updated successfully, but these errors were encountered: