Skip to content

Commit

Permalink
Update start.go
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge authored Feb 13, 2025
1 parent 2b09412 commit 5014448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/start/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ EOF
return errors.Errorf("failed to parse docker host: %w", err)
}
// Ref: https://vector.dev/docs/reference/configuration/sources/docker_logs/#docker_host
dindHost := url.URL{Scheme: "http", Host: net.JoinHostPort(utils.DinDHost, "2375")}
dindHost := &url.URL{Scheme: "http", Host: net.JoinHostPort(utils.DinDHost, "2375")}
switch parsed.Scheme {
case "tcp":
if _, port, err := net.SplitHostPort(parsed.Host); err == nil {
Expand Down

0 comments on commit 5014448

Please sign in to comment.