mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-12-02 11:02:16 +00:00
Update golang spdy to new path.
Upstream golang spdy was moved to x/net/spdy and then deleted. This vendors in the last revision and updates the only user of it.
This commit is contained in:
2
Godeps/_workspace/src/github.com/docker/spdystream/connection.go
generated
vendored
2
Godeps/_workspace/src/github.com/docker/spdystream/connection.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"code.google.com/p/go.net/spdy"
|
||||
"golang.org/x/net/spdy"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
3
Godeps/_workspace/src/github.com/docker/spdystream/priority.go
generated
vendored
3
Godeps/_workspace/src/github.com/docker/spdystream/priority.go
generated
vendored
@@ -1,9 +1,10 @@
|
||||
package spdystream
|
||||
|
||||
import (
|
||||
"code.google.com/p/go.net/spdy"
|
||||
"container/heap"
|
||||
"sync"
|
||||
|
||||
"golang.org/x/net/spdy"
|
||||
)
|
||||
|
||||
type prioritizedFrame struct {
|
||||
|
||||
3
Godeps/_workspace/src/github.com/docker/spdystream/priority_test.go
generated
vendored
3
Godeps/_workspace/src/github.com/docker/spdystream/priority_test.go
generated
vendored
@@ -1,10 +1,11 @@
|
||||
package spdystream
|
||||
|
||||
import (
|
||||
"code.google.com/p/go.net/spdy"
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"golang.org/x/net/spdy"
|
||||
)
|
||||
|
||||
func TestPriorityQueueOrdering(t *testing.T) {
|
||||
|
||||
2
Godeps/_workspace/src/github.com/docker/spdystream/stream.go
generated
vendored
2
Godeps/_workspace/src/github.com/docker/spdystream/stream.go
generated
vendored
@@ -9,7 +9,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"code.google.com/p/go.net/spdy"
|
||||
"golang.org/x/net/spdy"
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
Reference in New Issue
Block a user