Fixed ping URL

This commit is contained in:
Sam Alba 2013-07-05 14:55:48 -07:00
parent 57a6c83547
commit 4c174e0bfb
1 changed files with 1 additions and 1 deletions

View File

@ -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
}