Browse Source

Move engine-api to docker/docker/api

Remove all dependencies to engine-api and start using docker/docker/api.

Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
Jana Radhakrishnan 8 years ago
parent
commit
ad10ae9b3b

+ 1 - 1
libnetwork/cluster/provider.go

@@ -1,7 +1,7 @@
 package cluster
 
 import (
-	"github.com/docker/engine-api/types/network"
+	"github.com/docker/docker/api/types/network"
 	"golang.org/x/net/context"
 )
 

+ 1 - 1
libnetwork/cmd/dnet/dnet.go

@@ -23,8 +23,8 @@ import (
 	"github.com/docker/docker/pkg/reexec"
 
 	"github.com/Sirupsen/logrus"
+	"github.com/docker/docker/api/types/network"
 	"github.com/docker/docker/pkg/term"
-	"github.com/docker/engine-api/types/network"
 	"github.com/docker/libnetwork"
 	"github.com/docker/libnetwork/api"
 	"github.com/docker/libnetwork/config"

+ 1 - 1
libnetwork/cmd/dnet/dnet_linux.go

@@ -13,7 +13,7 @@ func setupDumpStackTrap() {
 	signal.Notify(c, syscall.SIGUSR1)
 	go func() {
 		for range c {
-			psignal.DumpStacks()
+			psignal.DumpStacks("")
 		}
 	}()
 }

+ 1 - 1
libnetwork/cmd/dnet/dnet_windows.go

@@ -21,7 +21,7 @@ func setupDumpStackTrap() {
 			logrus.Debugf("Stackdump - waiting signal at %s", ev)
 			for {
 				syscall.WaitForSingleObject(h, syscall.INFINITE)
-				signal.DumpStacks()
+				signal.DumpStacks("")
 			}
 		}
 	}()

+ 7 - 7
libnetwork/drivers/remote/driver_test.go

@@ -218,7 +218,7 @@ func TestGetEmptyCapabilities(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newDriver(plugin, p.Client)
+	d := newDriver(plugin, p.Client())
 	if d.Type() != plugin {
 		t.Fatal("Driver type does not match that given")
 	}
@@ -247,7 +247,7 @@ func TestGetExtraCapabilities(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newDriver(plugin, p.Client)
+	d := newDriver(plugin, p.Client())
 	if d.Type() != plugin {
 		t.Fatal("Driver type does not match that given")
 	}
@@ -277,7 +277,7 @@ func TestGetInvalidCapabilities(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newDriver(plugin, p.Client)
+	d := newDriver(plugin, p.Client())
 	if d.Type() != plugin {
 		t.Fatal("Driver type does not match that given")
 	}
@@ -391,7 +391,7 @@ func TestRemoteDriver(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newDriver(plugin, p.Client)
+	d := newDriver(plugin, p.Client())
 	if d.Type() != plugin {
 		t.Fatal("Driver type does not match that given")
 	}
@@ -469,7 +469,7 @@ func TestDriverError(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	driver := newDriver(plugin, p.Client)
+	driver := newDriver(plugin, p.Client())
 
 	if err := driver.CreateEndpoint("dummy", "dummy", &testEndpoint{t: t}, map[string]interface{}{}); err == nil {
 		t.Fatalf("Expected error from driver")
@@ -501,7 +501,7 @@ func TestMissingValues(t *testing.T) {
 	if err != nil {
 		t.Fatal(err)
 	}
-	driver := newDriver(plugin, p.Client)
+	driver := newDriver(plugin, p.Client())
 
 	if err := driver.CreateEndpoint("dummy", "dummy", ep, map[string]interface{}{}); err != nil {
 		t.Fatal(err)
@@ -562,7 +562,7 @@ func TestRollback(t *testing.T) {
 	if err != nil {
 		t.Fatal(err)
 	}
-	driver := newDriver(plugin, p.Client)
+	driver := newDriver(plugin, p.Client())
 
 	ep := &rollbackEndpoint{}
 

+ 4 - 4
libnetwork/ipams/remote/remote_test.go

@@ -79,7 +79,7 @@ func TestGetCapabilities(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newAllocator(plugin, p.Client)
+	d := newAllocator(plugin, p.Client())
 
 	caps, err := d.(*allocator).getCapabilities()
 	if err != nil {
@@ -102,7 +102,7 @@ func TestGetCapabilitiesFromLegacyDriver(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newAllocator(plugin, p.Client)
+	d := newAllocator(plugin, p.Client())
 
 	if _, err := d.(*allocator).getCapabilities(); err == nil {
 		t.Fatalf("Expected error, but got Success %v", err)
@@ -127,7 +127,7 @@ func TestGetDefaultAddressSpaces(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newAllocator(plugin, p.Client)
+	d := newAllocator(plugin, p.Client())
 
 	l, g, err := d.(*allocator).GetDefaultAddressSpaces()
 	if err != nil {
@@ -217,7 +217,7 @@ func TestRemoteDriver(t *testing.T) {
 		t.Fatal(err)
 	}
 
-	d := newAllocator(plugin, p.Client)
+	d := newAllocator(plugin, p.Client())
 
 	l, g, err := d.(*allocator).GetDefaultAddressSpaces()
 	if err != nil {