Merge pull request #2764 from loganhz/vshpere

Fix vsphere update issue
This commit is contained in:
Westly Wright 2019-03-14 09:19:55 -07:00 committed by GitHub
commit 78172bcdca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -197,6 +197,10 @@ export default Component.extend(NodeDriver, {
this.updateVappOptions(defaultVappOptions);
}
if ( !get(this, 'config.network') ) {
set(this, 'config.network', []);
}
return this._super(...arguments);
}
});