diff --git a/libnetwork/cluster/provider.go b/libnetwork/cluster/provider.go index e2c34dce6a307bea69f1204ba739b0456223b918..5e6b56094679bfce5caa3b83aa4a7c205c3bcce2 100644 --- a/libnetwork/cluster/provider.go +++ b/libnetwork/cluster/provider.go @@ -16,5 +16,5 @@ type Provider interface { AttachNetwork(string, string, []string) (*network.NetworkingConfig, error) DetachNetwork(string, string) error UpdateAttachment(string, string, *network.NetworkingConfig) error - WaitForDetachment(context.Context, string, string, string) error + WaitForDetachment(context.Context, string, string, string, string) error } diff --git a/libnetwork/cmd/dnet/dnet.go b/libnetwork/cmd/dnet/dnet.go index 044e066317ac54db09a3071a2bcc5b735a52af9d..757e9666f80a09ad6a45059e2642cad7ca8be9b2 100644 --- a/libnetwork/cmd/dnet/dnet.go +++ b/libnetwork/cmd/dnet/dnet.go @@ -343,7 +343,7 @@ func (d *dnetConnection) UpdateAttachment(string, string, *network.NetworkingCon return nil } -func (d *dnetConnection) WaitForDetachment(context.Context, string, string, string) error { +func (d *dnetConnection) WaitForDetachment(context.Context, string, string, string, string) error { return nil }