diff --git a/backends/backends.go b/backends/backends.go index e7bbfbf392..1272bca5c1 100644 --- a/backends/backends.go +++ b/backends/backends.go @@ -3,8 +3,8 @@ package backends import ( "io" "fmt" - "github.com/docker/beam" - beamutils "github.com/docker/beam/utils" + "github.com/docker/libswarm/beam" + beamutils "github.com/docker/libswarm/beam/utils" "strings" "sync" "time" diff --git a/beam/inmem/inmem.go b/beam/inmem/inmem.go index 0c7a7e90fe..b9c4ffccb4 100644 --- a/beam/inmem/inmem.go +++ b/beam/inmem/inmem.go @@ -1,7 +1,7 @@ package inmem import ( - "github.com/docker/beam" + "github.com/docker/libswarm/beam" "io" "sync" ) diff --git a/beam/inmem/inmem_test.go b/beam/inmem/inmem_test.go index 4703ddb053..62691eec8d 100644 --- a/beam/inmem/inmem_test.go +++ b/beam/inmem/inmem_test.go @@ -2,7 +2,7 @@ package inmem import ( "fmt" - "github.com/docker/beam" + "github.com/docker/libswarm/beam" "github.com/dotcloud/docker/pkg/testutils" "io/ioutil" "os" diff --git a/beam/unix/conn.go b/beam/unix/conn.go index 84b70ea130..a06f3f5eb0 100644 --- a/beam/unix/conn.go +++ b/beam/unix/conn.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/docker/beam" - "github.com/docker/beam/data" + "github.com/docker/libswarm/beam" + "github.com/docker/libswarm/beam/data" ) func Pair() (*Conn, *Conn, error) { diff --git a/beam/unix/conn_test.go b/beam/unix/conn_test.go index aa5be778e2..074201cf79 100644 --- a/beam/unix/conn_test.go +++ b/beam/unix/conn_test.go @@ -1,7 +1,7 @@ package unix import ( - "github.com/docker/beam" + "github.com/docker/libswarm/beam" "github.com/dotcloud/docker/pkg/testutils" "testing" ) diff --git a/beam/utils/buf.go b/beam/utils/buf.go index d4164a0220..674d5f2b20 100644 --- a/beam/utils/buf.go +++ b/beam/utils/buf.go @@ -1,7 +1,7 @@ package utils import ( - "github.com/docker/beam" + "github.com/docker/libswarm/beam" ) type Buffer []*beam.Message diff --git a/beam/utils/copy.go b/beam/utils/copy.go index ad41758d46..0d9543b043 100644 --- a/beam/utils/copy.go +++ b/beam/utils/copy.go @@ -1,7 +1,7 @@ package utils import ( - "github.com/docker/beam" + "github.com/docker/libswarm/beam" "sync" ) diff --git a/beam/utils/hub.go b/beam/utils/hub.go index b0dba9a5ef..0d574a0042 100644 --- a/beam/utils/hub.go +++ b/beam/utils/hub.go @@ -2,8 +2,8 @@ package utils import ( "fmt" - "github.com/docker/beam" - "github.com/docker/beam/inmem" + "github.com/docker/libswarm/beam" + "github.com/docker/libswarm/beam/inmem" "io" "sync" ) diff --git a/beam/utils/hub_test.go b/beam/utils/hub_test.go index c9b40a4817..2ec1f98011 100644 --- a/beam/utils/hub_test.go +++ b/beam/utils/hub_test.go @@ -1,7 +1,7 @@ package utils import ( - "github.com/docker/beam" + "github.com/docker/libswarm/beam" "github.com/dotcloud/docker/pkg/testutils" "testing" ) diff --git a/beam/utils/stack.go b/beam/utils/stack.go index 11fd678288..0748d6a041 100644 --- a/beam/utils/stack.go +++ b/beam/utils/stack.go @@ -3,7 +3,7 @@ package utils import ( "container/list" "fmt" - "github.com/docker/beam" + "github.com/docker/libswarm/beam" "strings" "sync" ) diff --git a/beam/utils/stack_test.go b/beam/utils/stack_test.go index 679e8349f0..fdc35201b0 100644 --- a/beam/utils/stack_test.go +++ b/beam/utils/stack_test.go @@ -1,9 +1,9 @@ package utils import ( - "github.com/docker/beam" - "github.com/docker/beam/inmem" - "github.com/docker/beam/unix" + "github.com/docker/libswarm/beam" + "github.com/docker/libswarm/beam/inmem" + "github.com/docker/libswarm/beam/unix" "github.com/dotcloud/docker/pkg/testutils" "strings" "testing" diff --git a/swarmd/swarmd.go b/swarmd/swarmd.go index 9369142ea1..5a2c4156dc 100644 --- a/swarmd/swarmd.go +++ b/swarmd/swarmd.go @@ -4,9 +4,9 @@ import ( "bufio" "fmt" "github.com/codegangsta/cli" - "github.com/docker/beam" - "github.com/docker/beam/inmem" - beamutils "github.com/docker/beam/utils" + "github.com/docker/libswarm/beam" + "github.com/docker/libswarm/beam/inmem" + beamutils "github.com/docker/libswarm/beam/utils" "github.com/docker/libswarm/backends" _ "github.com/dotcloud/docker/api/server" "github.com/dotcloud/docker/engine"