reorder arguments on gce upgrade e2e tests gcloud call

pull/6/head
Mike Danese 2015-09-28 14:53:02 -07:00
parent f8a9943d90
commit ea46e3dad7
1 changed files with 1 additions and 1 deletions

View File

@ -522,8 +522,8 @@ func migTemplate() (string, error) {
// An `instance-groups managed describe` call outputs what we want to stdout.
output, _, err := retryCmd("gcloud", "compute", "instance-groups", "managed",
fmt.Sprintf("--project=%s", testContext.CloudConfig.ProjectID),
fmt.Sprintf("--zone=%s", testContext.CloudConfig.Zone),
"describe",
fmt.Sprintf("--zone=%s", testContext.CloudConfig.Zone),
testContext.CloudConfig.NodeInstanceGroup)
if err != nil {
errLast = fmt.Errorf("gcloud compute instance-groups managed describe call failed with err: %v", err)