From bd81c9dea84f780af2c96ae61d3afd9f6f33fe4a Mon Sep 17 00:00:00 2001 From: Wang Long Date: Wed, 28 Oct 2015 22:23:32 +0800 Subject: [PATCH] Delete the unused const variable in docker/client.go The commit 9d76b79ac36e87965 refactor code for function "NewClient", and we should delete the unused const variable. Signed-off-by: Wang Long --- docker/client.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docker/client.go b/docker/client.go index ba379218..d8d3cc84 100644 --- a/docker/client.go +++ b/docker/client.go @@ -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) }