Merge pull request #1423 from mrjana/bugs

Adjust WaitForDetachment to also accept networkID
This commit is contained in:
Madhu Venugopal 2016-08-31 12:53:47 -07:00 committed by GitHub
commit d8415b2126
2 changed files with 2 additions and 2 deletions

View File

@ -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
}

View File

@ -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
}