Merge pull request #2262 from andrewsykim/fix-gce-disk-dependency

Fix GCE disk dependency bug
This commit is contained in:
Justin Santa Barbara 2017-04-04 00:16:26 -04:00 committed by GitHub
commit 2b3adb4769
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ func (d *clusterDiscoveryGCE) listGCEDisks() ([]*ResourceTracker, error) {
}
for _, u := range t.Users {
tracker.blocked = append(tracker.blocked, typeInstance+":"+gce.LastComponent(u))
tracker.blocked = append(tracker.blocked, typeInstance+":"+t.Zone+"/"+gce.LastComponent(u))
}
glog.V(4).Infof("Found resource: %s", t.SelfLink)