diff --git a/registry/registry.go b/registry/registry.go index 72521a3126..730fcf6eb9 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -20,7 +20,7 @@ import ( var ErrAlreadyExists = errors.New("Image already exists") func pingRegistryEndpoint(endpoint string) error { - resp, err := http.Get(endpoint + "/_ping") + resp, err := http.Get(endpoint + "_ping") if err != nil { return err }