From b795a1021d3d781b2d9adc5e5df038deb5cd2601 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Mon, 1 Feb 2016 12:22:18 -0500 Subject: [PATCH] bump(docker/spdystream):106e140db2cb50923efe088bf2906b2ee5a45fec --- Godeps/Godeps.json | 2 +- .../_workspace/src/github.com/docker/spdystream/connection.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 5847fcde6da..bb07e42dbc1 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -403,7 +403,7 @@ }, { "ImportPath": "github.com/docker/spdystream", - "Rev": "c33989bcb56748d2473194d11f8ac3fc563688eb" + "Rev": "106e140db2cb50923efe088bf2906b2ee5a45fec" }, { "ImportPath": "github.com/elazarl/go-bindata-assetfs", diff --git a/Godeps/_workspace/src/github.com/docker/spdystream/connection.go b/Godeps/_workspace/src/github.com/docker/spdystream/connection.go index aa6c75202e3..6031a0db1ab 100644 --- a/Godeps/_workspace/src/github.com/docker/spdystream/connection.go +++ b/Godeps/_workspace/src/github.com/docker/spdystream/connection.go @@ -320,6 +320,7 @@ func (s *Connection) Serve(newHandler StreamHandler) { partitionRoundRobin int goAwayFrame *spdy.GoAwayFrame ) +Loop: for { readFrame, err := s.framer.ReadFrame() if err != nil { @@ -362,7 +363,7 @@ func (s *Connection) Serve(newHandler StreamHandler) { case *spdy.GoAwayFrame: // hold on to the go away frame and exit the loop goAwayFrame = frame - break + break Loop default: priority = 7 partition = partitionRoundRobin