Skip to content

Commit

Permalink
fix(gce): fix waiting on regional operations from the new MIG compute…
Browse files Browse the repository at this point in the history
… wrapper (#3718)

I tested this locally with a ZonalOperation and fixed it there. I'm not
sure why it didn't occur to me to also make the same fix in
RegionalOperation.
  • Loading branch information
plumpy authored and jtk54 committed May 24, 2019
1 parent 55b8da0 commit 6666217
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Operation waitForDone(Task task, String phase) {
return poller.waitForRegionalOperation(
credentials.getCompute(),
credentials.getProject(),
operation.getRegion(),
GCEUtil.getLocalName(operation.getRegion()),
operation.getName(),
/* timeoutSeconds= */ null,
task,
Expand Down

0 comments on commit 6666217

Please sign in to comment.