Merge pull request #13777 from cpuguy83/graphdriver_extpoints

Create extpoint for graphdrivers
This commit is contained in:
Jess Frazelle 2015-10-08 13:46:42 -07:00
commit 790b9791fd
2 changed files with 35 additions and 14 deletions

View file

@ -30,7 +30,7 @@ func teardownRemotePluginServer() {
func TestFailedConnection(t *testing.T) {
c, _ := NewClient("tcp://127.0.0.1:1", tlsconfig.Options{InsecureSkipVerify: true})
err := c.callWithRetry("Service.Method", nil, nil, false)
_, err := c.callWithRetry("Service.Method", nil, false)
if err == nil {
t.Fatal("Unexpected successful connection")
}