fix gce disk dependency bug

This commit is contained in:
andrewsykim 2017-05-31 12:47:08 -04:00
parent ab36953f68
commit 02c7c917c1
1 changed files with 1 additions and 1 deletions

View File

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