From 12d2638637868abaea6ba2e2a138a4485f93a00d Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Tue, 4 Aug 2015 20:11:06 -0400 Subject: [PATCH] Update mesos-go godep (to eliminate its use of code.google.com) This helps us remove one more (dying) Godep import. --- Godeps/Godeps.json | 16 ++++++++-------- .../mesos/mesos-go/detector/zoo/client.go | 3 --- .../mesos/mesos-go/executor/executor.go | 2 +- .../mesos-go/executor/executor_intgr_test.go | 2 +- .../mesos/mesos-go/scheduler/scheduler.go | 2 +- 5 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 77e73e69562..eb7ea07db09 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -375,35 +375,35 @@ }, { "ImportPath": "github.com/mesos/mesos-go/auth", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/detector", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/executor", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/mesosproto", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/mesosutil", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/messenger", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/scheduler", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/mesos/mesos-go/upid", - "Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" + "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d" }, { "ImportPath": "github.com/miekg/dns", diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client.go b/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client.go index 7299930ed3b..3e42c2d7c44 100644 --- a/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client.go +++ b/Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client.go @@ -270,9 +270,6 @@ func (zkc *Client) monitorSession(sessionEvents <-chan zk.Event, connected chan default: // message buf full, this becomes a non-blocking noop } - case zk.StateSyncConnected: - log.Infoln("syncConnected to zookper server") - case zk.StateDisconnected: log.Infoln("zookeeper client disconnected") diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor.go b/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor.go index 2f6352c7f54..530fdd52551 100644 --- a/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor.go +++ b/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor.go @@ -25,7 +25,6 @@ import ( "sync" "time" - "code.google.com/p/go-uuid/uuid" "github.com/gogo/protobuf/proto" log "github.com/golang/glog" "github.com/mesos/mesos-go/mesosproto" @@ -33,6 +32,7 @@ import ( "github.com/mesos/mesos-go/mesosutil/process" "github.com/mesos/mesos-go/messenger" "github.com/mesos/mesos-go/upid" + "github.com/pborman/uuid" "golang.org/x/net/context" ) diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor_intgr_test.go b/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor_intgr_test.go index 86199a94102..fafbc77dab2 100644 --- a/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor_intgr_test.go +++ b/Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor_intgr_test.go @@ -28,12 +28,12 @@ import ( "testing" "time" - "code.google.com/p/go-uuid/uuid" "github.com/gogo/protobuf/proto" log "github.com/golang/glog" mesos "github.com/mesos/mesos-go/mesosproto" util "github.com/mesos/mesos-go/mesosutil" "github.com/mesos/mesos-go/testutil" + "github.com/pborman/uuid" "github.com/stretchr/testify/assert" ) diff --git a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go b/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go index 90204994af5..117f4b2f3c1 100644 --- a/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go +++ b/Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go @@ -28,7 +28,6 @@ import ( "sync" "time" - "code.google.com/p/go-uuid/uuid" "github.com/gogo/protobuf/proto" log "github.com/golang/glog" "github.com/mesos/mesos-go/auth" @@ -38,6 +37,7 @@ import ( "github.com/mesos/mesos-go/mesosutil/process" "github.com/mesos/mesos-go/messenger" "github.com/mesos/mesos-go/upid" + "github.com/pborman/uuid" "golang.org/x/net/context" )