|
@@ -1,6 +1,8 @@
|
|
|
package client
|
|
|
|
|
|
import (
|
|
|
+ "path"
|
|
|
+
|
|
|
"github.com/docker/docker/api/types"
|
|
|
"golang.org/x/net/context"
|
|
|
)
|
|
@@ -8,7 +10,7 @@ import (
|
|
|
// Ping pings the server and returns the value of the "Docker-Experimental", "OS-Type" & "API-Version" headers
|
|
|
func (cli *Client) Ping(ctx context.Context) (types.Ping, error) {
|
|
|
var ping types.Ping
|
|
|
- req, err := cli.buildRequest("GET", cli.basePath+"/_ping", nil, nil)
|
|
|
+ req, err := cli.buildRequest("GET", path.Join(cli.basePath, "/_ping"), nil, nil)
|
|
|
if err != nil {
|
|
|
return ping, err
|
|
|
}
|