Merge pull request #5715 from uber/b-google_compute_instance_group-error
Fix error message arguments in google_compute_instance_group
This commit is contained in:
commit
85bd151370
|
@ -225,7 +225,7 @@ func resourceComputeInstanceGroupUpdate(d *schema.ResourceData, meta interface{}
|
||||||
return fmt.Errorf("Error invalid instance URLs: %v", from)
|
return fmt.Errorf("Error invalid instance URLs: %v", from)
|
||||||
}
|
}
|
||||||
if !validInstanceURLs(to) {
|
if !validInstanceURLs(to) {
|
||||||
return fmt.Errorf("Error invalid instance URLs: %v", from)
|
return fmt.Errorf("Error invalid instance URLs: %v", to)
|
||||||
}
|
}
|
||||||
|
|
||||||
add, remove := calcAddRemove(from, to)
|
add, remove := calcAddRemove(from, to)
|
||||||
|
|
Loading…
Reference in New Issue