mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-18 08:09:58 +00:00
bump(docker/spdystream):106e140db2cb50923efe088bf2906b2ee5a45fec
This commit is contained in:
parent
ff386b7a58
commit
b795a1021d
2
Godeps/Godeps.json
generated
2
Godeps/Godeps.json
generated
@ -403,7 +403,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/docker/spdystream",
|
"ImportPath": "github.com/docker/spdystream",
|
||||||
"Rev": "c33989bcb56748d2473194d11f8ac3fc563688eb"
|
"Rev": "106e140db2cb50923efe088bf2906b2ee5a45fec"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/elazarl/go-bindata-assetfs",
|
"ImportPath": "github.com/elazarl/go-bindata-assetfs",
|
||||||
|
3
Godeps/_workspace/src/github.com/docker/spdystream/connection.go
generated
vendored
3
Godeps/_workspace/src/github.com/docker/spdystream/connection.go
generated
vendored
@ -320,6 +320,7 @@ func (s *Connection) Serve(newHandler StreamHandler) {
|
|||||||
partitionRoundRobin int
|
partitionRoundRobin int
|
||||||
goAwayFrame *spdy.GoAwayFrame
|
goAwayFrame *spdy.GoAwayFrame
|
||||||
)
|
)
|
||||||
|
Loop:
|
||||||
for {
|
for {
|
||||||
readFrame, err := s.framer.ReadFrame()
|
readFrame, err := s.framer.ReadFrame()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -362,7 +363,7 @@ func (s *Connection) Serve(newHandler StreamHandler) {
|
|||||||
case *spdy.GoAwayFrame:
|
case *spdy.GoAwayFrame:
|
||||||
// hold on to the go away frame and exit the loop
|
// hold on to the go away frame and exit the loop
|
||||||
goAwayFrame = frame
|
goAwayFrame = frame
|
||||||
break
|
break Loop
|
||||||
default:
|
default:
|
||||||
priority = 7
|
priority = 7
|
||||||
partition = partitionRoundRobin
|
partition = partitionRoundRobin
|
||||||
|
Loading…
Reference in New Issue
Block a user