Commit 12d26386 authored by Eric Paris's avatar Eric Paris

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

This helps us remove one more (dying) Godep import.
parent b4fb24f4
...@@ -375,35 +375,35 @@ ...@@ -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",
......
...@@ -270,9 +270,6 @@ func (zkc *Client) monitorSession(sessionEvents <-chan zk.Event, connected chan ...@@ -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")
......
...@@ -25,7 +25,6 @@ import ( ...@@ -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 ( ...@@ -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"
) )
......
...@@ -28,12 +28,12 @@ import ( ...@@ -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"
) )
......
...@@ -28,7 +28,6 @@ import ( ...@@ -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 ( ...@@ -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"
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment