Update mesos-go godep (to eliminate its use of code.google.com)

This helps us remove one more (dying) Godep import.
This commit is contained in:
Eric Paris
2015-08-04 20:11:06 -04:00
parent b4fb24f4bd
commit 12d2638637
5 changed files with 11 additions and 14 deletions

16
Godeps/Godeps.json generated
View File

@@ -375,35 +375,35 @@
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/auth", "ImportPath": "github.com/mesos/mesos-go/auth",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/detector", "ImportPath": "github.com/mesos/mesos-go/detector",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/executor", "ImportPath": "github.com/mesos/mesos-go/executor",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/mesosproto", "ImportPath": "github.com/mesos/mesos-go/mesosproto",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/mesosutil", "ImportPath": "github.com/mesos/mesos-go/mesosutil",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/messenger", "ImportPath": "github.com/mesos/mesos-go/messenger",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/scheduler", "ImportPath": "github.com/mesos/mesos-go/scheduler",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/mesos/mesos-go/upid", "ImportPath": "github.com/mesos/mesos-go/upid",
"Rev": "6440c09c9d8a1b365f3c3e9b2297dd856abd017c" "Rev": "65cb9ffec50a76f4ed9fe4808405b66b3bb7010d"
}, },
{ {
"ImportPath": "github.com/miekg/dns", "ImportPath": "github.com/miekg/dns",

View File

@@ -270,9 +270,6 @@ func (zkc *Client) monitorSession(sessionEvents <-chan zk.Event, connected chan
default: // message buf full, this becomes a non-blocking noop default: // message buf full, this becomes a non-blocking noop
} }
case zk.StateSyncConnected:
log.Infoln("syncConnected to zookper server")
case zk.StateDisconnected: case zk.StateDisconnected:
log.Infoln("zookeeper client disconnected") log.Infoln("zookeeper client disconnected")

View File

@@ -25,7 +25,6 @@ import (
"sync" "sync"
"time" "time"
"code.google.com/p/go-uuid/uuid"
"github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/proto"
log "github.com/golang/glog" log "github.com/golang/glog"
"github.com/mesos/mesos-go/mesosproto" "github.com/mesos/mesos-go/mesosproto"
@@ -33,6 +32,7 @@ import (
"github.com/mesos/mesos-go/mesosutil/process" "github.com/mesos/mesos-go/mesosutil/process"
"github.com/mesos/mesos-go/messenger" "github.com/mesos/mesos-go/messenger"
"github.com/mesos/mesos-go/upid" "github.com/mesos/mesos-go/upid"
"github.com/pborman/uuid"
"golang.org/x/net/context" "golang.org/x/net/context"
) )

View File

@@ -28,12 +28,12 @@ import (
"testing" "testing"
"time" "time"
"code.google.com/p/go-uuid/uuid"
"github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/proto"
log "github.com/golang/glog" log "github.com/golang/glog"
mesos "github.com/mesos/mesos-go/mesosproto" mesos "github.com/mesos/mesos-go/mesosproto"
util "github.com/mesos/mesos-go/mesosutil" util "github.com/mesos/mesos-go/mesosutil"
"github.com/mesos/mesos-go/testutil" "github.com/mesos/mesos-go/testutil"
"github.com/pborman/uuid"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )

View File

@@ -28,7 +28,6 @@ import (
"sync" "sync"
"time" "time"
"code.google.com/p/go-uuid/uuid"
"github.com/gogo/protobuf/proto" "github.com/gogo/protobuf/proto"
log "github.com/golang/glog" log "github.com/golang/glog"
"github.com/mesos/mesos-go/auth" "github.com/mesos/mesos-go/auth"
@@ -38,6 +37,7 @@ import (
"github.com/mesos/mesos-go/mesosutil/process" "github.com/mesos/mesos-go/mesosutil/process"
"github.com/mesos/mesos-go/messenger" "github.com/mesos/mesos-go/messenger"
"github.com/mesos/mesos-go/upid" "github.com/mesos/mesos-go/upid"
"github.com/pborman/uuid"
"golang.org/x/net/context" "golang.org/x/net/context"
) )