Skip to content

Commit 053de4a

Browse files
authored
Merge pull request #3752 from dougm/vcsim-importspec-version
vcsim: support multiple VirtualSystemType in OvfManager.CreateImportSpec
2 parents cc135ec + 3040a0a commit 053de4a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

simulator/ovf_manager.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ func (m *OvfManager) CreateImportSpec(ctx *Context, req *types.CreateImportSpec)
190190

191191
hw := env.VirtualSystem.VirtualHardware[0]
192192
if vmx := hw.System.VirtualSystemType; vmx != nil {
193-
spec.ConfigSpec.Version = *vmx
193+
version := strings.Split(*vmx, ",")[0]
194+
spec.ConfigSpec.Version = strings.TrimSpace(version)
194195
}
195196

196197
ndisk := 0

0 commit comments

Comments
 (0)