1
0
mirror of https://github.com/rancher/os.git synced 2025-06-24 14:01:34 +00:00

Delete the unused const variable in docker/client.go

The commit 9d76b79ac3 refactor code for function
"NewClient", and we should delete the unused const
variable.

Signed-off-by: Wang Long <long.wanglong@huawei.com>
This commit is contained in:
Wang Long 2015-10-28 22:23:32 +08:00
parent 0f2c092911
commit bd81c9dea8

View File

@ -5,11 +5,6 @@ import (
"github.com/rancher/os/config"
)
const (
MAX_WAIT = 30000
INTERVAL = 100
)
func NewSystemClient() (*dockerClient.Client, error) {
return NewClient(config.DOCKER_SYSTEM_HOST)
}