mirror of https://github.com/docker/docs.git
Godep update dockerclient
Signed-off-by: Dong Chen <dongluo.chen@docker.com>
This commit is contained in:
parent
3461df4032
commit
ea5f2e0f63
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue