diff --git a/README.md b/README.md index 6b55873..8206af5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Wabbit - Go AMQP Mocking Library -[![GoDoc](https://godoc.org/github.com/NeowayLabs/wabbit?status.svg)](https://godoc.org/github.com/NeowayLabs/wabbit) -[![Go Report Card](https://goreportcard.com/badge/github.com/NeowayLabs/wabbit)](https://goreportcard.com/report/github.com/NeowayLabs/wabbit) +[![GoDoc](https://godoc.org/github.com/PeriscopeData/wabbit?status.svg)](https://godoc.org/github.com/PeriscopeData/wabbit) +[![Go Report Card](https://goreportcard.com/badge/github.com/PeriscopeData/wabbit)](https://goreportcard.com/report/github.com/PeriscopeData/wabbit) > Elmer Fudd: Shhh. Be vewy vewy quiet, I'm hunting wabbits @@ -35,9 +35,9 @@ package main import ( "testing" - "github.com/NeowayLabs/wabbit/amqptest" - "github.com/NeowayLabs/wabbit/amqptest/server" - "github.com/NeowayLabs/wabbit/amqp" + "github.com/PeriscopeData/wabbit/amqptest" + "github.com/PeriscopeData/wabbit/amqptest/server" + "github.com/PeriscopeData/wabbit/amqp" ) diff --git a/_examples/publisher/exchange.go b/_examples/publisher/exchange.go index 67b856d..b666ac8 100644 --- a/_examples/publisher/exchange.go +++ b/_examples/publisher/exchange.go @@ -4,8 +4,8 @@ import ( "flag" "log" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/amqp" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/amqp" ) var ( diff --git a/_examples/simple-consumer/exchange.go b/_examples/simple-consumer/exchange.go index 19eb95e..02fa4fe 100644 --- a/_examples/simple-consumer/exchange.go +++ b/_examples/simple-consumer/exchange.go @@ -10,8 +10,8 @@ import ( "log" "time" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/amqp" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/amqp" ) var ( diff --git a/_examples/worker_queue/worker_queue.go b/_examples/worker_queue/worker_queue.go index 03e7717..df32567 100644 --- a/_examples/worker_queue/worker_queue.go +++ b/_examples/worker_queue/worker_queue.go @@ -4,8 +4,8 @@ import ( "flag" "log" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/amqp" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/amqp" ) var ( diff --git a/amqp/channel.go b/amqp/channel.go index 76334d9..bc8c2af 100644 --- a/amqp/channel.go +++ b/amqp/channel.go @@ -3,8 +3,8 @@ package amqp import ( "errors" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/utils" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/utils" "github.com/streadway/amqp" ) diff --git a/amqp/delivery.go b/amqp/delivery.go index 904ea1e..4ccb687 100644 --- a/amqp/delivery.go +++ b/amqp/delivery.go @@ -1,7 +1,7 @@ package amqp import ( - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" "github.com/streadway/amqp" ) diff --git a/amqp/dial.go b/amqp/dial.go index 227934c..2c76a68 100644 --- a/amqp/dial.go +++ b/amqp/dial.go @@ -3,8 +3,8 @@ package amqp import ( "time" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/utils" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/utils" "github.com/streadway/amqp" ) diff --git a/amqp/dial_test.go b/amqp/dial_test.go index 0603741..59294f3 100644 --- a/amqp/dial_test.go +++ b/amqp/dial_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" "github.com/fsouza/go-dockerclient" "github.com/tiago4orion/conjure" ) diff --git a/amqp/publisher.go b/amqp/publisher.go index ab8344a..8368f79 100644 --- a/amqp/publisher.go +++ b/amqp/publisher.go @@ -1,6 +1,6 @@ package amqp -import "github.com/NeowayLabs/wabbit" +import "github.com/PeriscopeData/wabbit" type Publisher struct { conn wabbit.Conn diff --git a/amqp_test.go b/amqp_test.go index 9185d5d..6b037e4 100644 --- a/amqp_test.go +++ b/amqp_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/amqptest" - "github.com/NeowayLabs/wabbit/amqptest/server" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/amqptest" + "github.com/PeriscopeData/wabbit/amqptest/server" ) func TestBasicUsage(t *testing.T) { diff --git a/amqptest/dial.go b/amqptest/dial.go index 1147638..3c203ce 100644 --- a/amqptest/dial.go +++ b/amqptest/dial.go @@ -4,9 +4,9 @@ import ( "sync" "time" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/amqptest/server" - "github.com/NeowayLabs/wabbit/utils" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/amqptest/server" + "github.com/PeriscopeData/wabbit/utils" "github.com/pborman/uuid" ) diff --git a/amqptest/dial_test.go b/amqptest/dial_test.go index 0740749..5b23d03 100644 --- a/amqptest/dial_test.go +++ b/amqptest/dial_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/amqptest/server" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/amqptest/server" "github.com/pborman/uuid" ) diff --git a/amqptest/publisher.go b/amqptest/publisher.go index ef4d882..4d83c25 100644 --- a/amqptest/publisher.go +++ b/amqptest/publisher.go @@ -1,6 +1,6 @@ package amqptest -import "github.com/NeowayLabs/wabbit" +import "github.com/PeriscopeData/wabbit" type Publisher struct { channel wabbit.Publisher diff --git a/amqptest/server/channel.go b/amqptest/server/channel.go index a722742..d0ce82a 100644 --- a/amqptest/server/channel.go +++ b/amqptest/server/channel.go @@ -6,8 +6,8 @@ import ( "sync" "sync/atomic" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/utils" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/utils" "github.com/streadway/amqp" ) diff --git a/amqptest/server/delivery.go b/amqptest/server/delivery.go index bd890a4..d47ccaf 100644 --- a/amqptest/server/delivery.go +++ b/amqptest/server/delivery.go @@ -1,6 +1,6 @@ package server -import "github.com/NeowayLabs/wabbit" +import "github.com/PeriscopeData/wabbit" type ( // Delivery is an interface to delivered messages diff --git a/amqptest/server/queue.go b/amqptest/server/queue.go index 8e4b61d..947ea1a 100644 --- a/amqptest/server/queue.go +++ b/amqptest/server/queue.go @@ -1,6 +1,6 @@ package server -import "github.com/NeowayLabs/wabbit" +import "github.com/PeriscopeData/wabbit" const ( QueueMaxLen = 2 << 8 diff --git a/amqptest/server/server.go b/amqptest/server/server.go index 71e1a6c..8f7ff08 100644 --- a/amqptest/server/server.go +++ b/amqptest/server/server.go @@ -5,8 +5,8 @@ import ( "fmt" "sync" - "github.com/NeowayLabs/wabbit" - "github.com/NeowayLabs/wabbit/utils" + "github.com/PeriscopeData/wabbit" + "github.com/PeriscopeData/wabbit/utils" ) const ( diff --git a/amqptest/server/vhost.go b/amqptest/server/vhost.go index 320b1e2..ae0bd6f 100644 --- a/amqptest/server/vhost.go +++ b/amqptest/server/vhost.go @@ -3,7 +3,7 @@ package server import ( "fmt" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" ) // VHost is a fake AMQP virtual host diff --git a/amqptest/server/vhost_test.go b/amqptest/server/vhost_test.go index 67e26b8..1a9c74b 100644 --- a/amqptest/server/vhost_test.go +++ b/amqptest/server/vhost_test.go @@ -3,7 +3,7 @@ package server import ( "testing" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" ) func TestVHostWithDefaults(t *testing.T) { diff --git a/utils/broadcast.go b/utils/broadcast.go index 14647a6..c75295f 100644 --- a/utils/broadcast.go +++ b/utils/broadcast.go @@ -3,7 +3,7 @@ package utils import ( "sync" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" ) const listenerSlots = 128 diff --git a/utils/broadcast_test.go b/utils/broadcast_test.go index 09f5cbd..1693618 100644 --- a/utils/broadcast_test.go +++ b/utils/broadcast_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" ) func TestBroadcast(t *testing.T) { diff --git a/utils/opt.go b/utils/opt.go index d6974af..476dc6b 100644 --- a/utils/opt.go +++ b/utils/opt.go @@ -3,7 +3,7 @@ package utils import ( "fmt" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" "github.com/streadway/amqp" ) diff --git a/utils/opt_test.go b/utils/opt_test.go index c4f0679..527e7bc 100644 --- a/utils/opt_test.go +++ b/utils/opt_test.go @@ -3,7 +3,7 @@ package utils import ( "testing" - "github.com/NeowayLabs/wabbit" + "github.com/PeriscopeData/wabbit" "github.com/streadway/amqp" )