From 8bfac6bd7152630a1dd8f6a091714103130013ae Mon Sep 17 00:00:00 2001 From: Shijiang Wei Date: Thu, 2 Jul 2015 11:11:29 +0800 Subject: [PATCH] update deps Fixes https://github.com/docker/swarm/issues/1006 Signed-off-by: Shijiang Wei --- Godeps/Godeps.json | 2 +- .../src/github.com/samalba/dockerclient/dockerclient.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 9b4ef788cf..a0679cfb53 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -105,7 +105,7 @@ }, { "ImportPath": "github.com/samalba/dockerclient", - "Rev": "661e5e686f3c69aa71ec447efd7a0d32f8dc0813" + "Rev": "3342e9407a459d3cb369a81f8aa23b6cbe3fa8da" }, { "ImportPath": "github.com/samuel/go-zookeeper/zk", diff --git a/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go b/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go index cdfd56d8ca..d08d8d1d08 100644 --- a/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go +++ b/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go @@ -375,7 +375,7 @@ func (client *DockerClient) StartMonitorEvents(cb Callback, ec chan error, args ec <- err return } - go cb(&e.Event, ec, args...) + cb(&e.Event, ec, args...) } }() }