Skip to content

Commit d8477b4

Browse files
committed
fix broken printf
1 parent 2c3b404 commit d8477b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/discovery/docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ func (*DockerWatcher) derivePorts(svc *DiscoveredService, services []ServiceInfo
389389
oldPort := svc.Endpoint
390390
svc.Endpoint = s.Endpoint
391391
svc.Service = &s
392-
log.Printf("docker: using HTTP %s instead of %d for %s", s.Endpoint.String(), oldPort, svc.Subdomain)
392+
log.Printf("docker: using HTTP %s instead of %s for %s", s.Endpoint.String(), oldPort.String(), svc.Subdomain)
393393
port = svc.Endpoint.Port()
394394
break
395395
}

0 commit comments

Comments
 (0)