From bf11281a1d4cff77bbdf20e6dc741860f6aab513 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Wed, 27 Jan 2021 16:32:43 -0500 Subject: [PATCH] Switch from docker->moby for spdystream Signed-off-by: Davanum Srinivas --- MAINTAINERS | 2 +- README.md | 4 ++-- connection.go | 6 +++--- go.mod | 2 +- priority.go | 2 +- priority_test.go | 2 +- spdy_test.go | 2 +- stream.go | 2 +- ws/ws_test.go | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 8cc490c..26e5ec8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1,6 +1,6 @@ # Spdystream maintainers file # -# This file describes who runs the docker/spdystream project and how. +# This file describes who runs the moby/spdystream project and how. # This is a living document - if you see something out of date or missing, speak up! # # It is structured to be consumable by both humans and programs. diff --git a/README.md b/README.md index 420844b..b84e983 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ package main import ( "fmt" - "github.com/docker/spdystream" + "github.com/moby/spdystream" "net" "net/http" ) @@ -49,7 +49,7 @@ Server example (mirroring server without auth) package main import ( - "github.com/docker/spdystream" + "github.com/moby/spdystream" "net" ) diff --git a/connection.go b/connection.go index 5653a14..d906bb0 100644 --- a/connection.go +++ b/connection.go @@ -25,7 +25,7 @@ import ( "sync" "time" - "github.com/docker/spdystream/spdy" + "github.com/moby/spdystream/spdy" ) var ( @@ -117,7 +117,7 @@ Loop: // attempts to grab the write lock that Write() already has, causing a // deadlock. // - // See https://github.com/docker/spdystream/issues/49 for more details. + // See https://github.com/moby/spdystream/issues/49 for more details. go func() { for range resetChan { } @@ -216,7 +216,7 @@ type Connection struct { shutdownChan chan error hasShutdown bool - // for testing https://github.com/docker/spdystream/pull/56 + // for testing https://github.com/moby/spdystream/pull/56 dataFrameHandler func(*spdy.DataFrame) error } diff --git a/go.mod b/go.mod index 07eb2e2..d9b9ad5 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/docker/spdystream +module github.com/moby/spdystream go 1.13 diff --git a/priority.go b/priority.go index ee56330..d8eb351 100644 --- a/priority.go +++ b/priority.go @@ -20,7 +20,7 @@ import ( "container/heap" "sync" - "github.com/docker/spdystream/spdy" + "github.com/moby/spdystream/spdy" ) type prioritizedFrame struct { diff --git a/priority_test.go b/priority_test.go index c69f774..ead4b6a 100644 --- a/priority_test.go +++ b/priority_test.go @@ -21,7 +21,7 @@ import ( "testing" "time" - "github.com/docker/spdystream/spdy" + "github.com/moby/spdystream/spdy" ) func TestPriorityQueueOrdering(t *testing.T) { diff --git a/spdy_test.go b/spdy_test.go index d70276a..312a950 100644 --- a/spdy_test.go +++ b/spdy_test.go @@ -29,7 +29,7 @@ import ( "testing" "time" - "github.com/docker/spdystream/spdy" + "github.com/moby/spdystream/spdy" ) func TestSpdyStreams(t *testing.T) { diff --git a/stream.go b/stream.go index cef3d37..404e3c0 100644 --- a/stream.go +++ b/stream.go @@ -25,7 +25,7 @@ import ( "sync" "time" - "github.com/docker/spdystream/spdy" + "github.com/moby/spdystream/spdy" ) var ( diff --git a/ws/ws_test.go b/ws/ws_test.go index 97cc6d0..32d9f0f 100644 --- a/ws/ws_test.go +++ b/ws/ws_test.go @@ -25,7 +25,7 @@ import ( "strings" "testing" - "github.com/docker/spdystream" + "github.com/moby/spdystream" "github.com/gorilla/websocket" )