Godep update dockerclient

Signed-off-by: Dong Chen <dongluo.chen@docker.com>
This commit is contained in:
Dong Chen 2016-03-29 12:01:56 -07:00
parent 3461df4032
commit ea5f2e0f63
2 changed files with 12 additions and 3 deletions

7
Godeps/Godeps.json generated
View File

@ -1,6 +1,7 @@
{
"ImportPath": "github.com/docker/swarm",
"GoVersion": "go1.5",
"GodepVersion": "v60",
"Packages": [
"./..."
],
@ -303,15 +304,15 @@
},
{
"ImportPath": "github.com/samalba/dockerclient",
"Rev": "5921830c810f8a9d531ac06070390cd99885db63"
"Rev": "52fe1c9d696f36d894d2319f1717a383ebc46f19"
},
{
"ImportPath": "github.com/samalba/dockerclient/mockclient",
"Rev": "5921830c810f8a9d531ac06070390cd99885db63"
"Rev": "52fe1c9d696f36d894d2319f1717a383ebc46f19"
},
{
"ImportPath": "github.com/samalba/dockerclient/nopclient",
"Rev": "5921830c810f8a9d531ac06070390cd99885db63"
"Rev": "52fe1c9d696f36d894d2319f1717a383ebc46f19"
},
{
"ImportPath": "github.com/samuel/go-zookeeper/zk",

View File

@ -195,6 +195,10 @@ func (s *State) String() string {
return "Dead"
}
if s.StartedAt.IsZero() {
return "Created"
}
if s.FinishedAt.IsZero() {
return ""
}
@ -219,6 +223,10 @@ func (s *State) StateString() string {
return "dead"
}
if s.StartedAt.IsZero() {
return "created"
}
return "exited"
}