We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
API_LISTEN
1 parent b363d94 commit 45cc5d8Copy full SHA for 45cc5d8
pkg/server/server.go
@@ -1496,7 +1496,7 @@ func (api *APIServer) CreateIntegrationTables() error {
1496
defer ch.Close()
1497
port := "80"
1498
if strings.Contains(api.config.API.ListenAddr, ":") {
1499
- port = api.config.API.ListenAddr[strings.Index(api.config.API.ListenAddr, ":"):]
+ port = api.config.API.ListenAddr[strings.Index(api.config.API.ListenAddr, ":")+1:]
1500
}
1501
auth := ""
1502
if api.config.API.Username != "" || api.config.API.Password != "" {
0 commit comments