mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
20 lines
443 B
Go
20 lines
443 B
Go
|
package client
|
||
|
|
||
|
import "golang.org/x/net/context"
|
||
|
|
||
|
// Ping pings the server and return the value of the "Docker-Experimental" header
|
||
|
func (cli *Client) Ping(ctx context.Context) (bool, error) {
|
||
|
serverResp, err := cli.get(ctx, "/_ping", nil, nil)
|
||
|
if err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
defer ensureReaderClosed(serverResp)
|
||
|
|
||
|
exp := serverResp.header.Get("Docker-Experimental")
|
||
|
if exp != "true" {
|
||
|
return false, nil
|
||
|
}
|
||
|
|
||
|
return true, nil
|
||
|
}
|