Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
12d26386
Commit
12d26386
authored
Aug 04, 2015
by
Eric Paris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update mesos-go godep (to eliminate its use of code.google.com)
This helps us remove one more (dying) Godep import.
parent
b4fb24f4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
14 deletions
+11
-14
Godeps.json
Godeps/Godeps.json
+8
-8
client.go
...pace/src/github.com/mesos/mesos-go/detector/zoo/client.go
+0
-3
executor.go
...kspace/src/github.com/mesos/mesos-go/executor/executor.go
+1
-1
executor_intgr_test.go
...github.com/mesos/mesos-go/executor/executor_intgr_test.go
+1
-1
scheduler.go
...pace/src/github.com/mesos/mesos-go/scheduler/scheduler.go
+1
-1
No files found.
Godeps/Godeps.json
View file @
12d26386
...
@@ -375,35 +375,35 @@
...
@@ -375,35 +375,35 @@
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/auth"
,
"ImportPath"
:
"github.com/mesos/mesos-go/auth"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/detector"
,
"ImportPath"
:
"github.com/mesos/mesos-go/detector"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/executor"
,
"ImportPath"
:
"github.com/mesos/mesos-go/executor"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/mesosproto"
,
"ImportPath"
:
"github.com/mesos/mesos-go/mesosproto"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/mesosutil"
,
"ImportPath"
:
"github.com/mesos/mesos-go/mesosutil"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/messenger"
,
"ImportPath"
:
"github.com/mesos/mesos-go/messenger"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/scheduler"
,
"ImportPath"
:
"github.com/mesos/mesos-go/scheduler"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/mesos/mesos-go/upid"
,
"ImportPath"
:
"github.com/mesos/mesos-go/upid"
,
"Rev"
:
"6
440c09c9d8a1b365f3c3e9b2297dd856abd017c
"
"Rev"
:
"6
5cb9ffec50a76f4ed9fe4808405b66b3bb7010d
"
},
},
{
{
"ImportPath"
:
"github.com/miekg/dns"
,
"ImportPath"
:
"github.com/miekg/dns"
,
...
...
Godeps/_workspace/src/github.com/mesos/mesos-go/detector/zoo/client.go
View file @
12d26386
...
@@ -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"
)
...
...
Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor.go
View file @
12d26386
...
@@ -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"
)
)
...
...
Godeps/_workspace/src/github.com/mesos/mesos-go/executor/executor_intgr_test.go
View file @
12d26386
...
@@ -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"
)
)
...
...
Godeps/_workspace/src/github.com/mesos/mesos-go/scheduler/scheduler.go
View file @
12d26386
...
@@ -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"
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment