Skip to content

Commit

Permalink
Fix error caused by unsetting the Image SystemId in v0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
powerkimhub committed Feb 8, 2024
1 parent 6c02183 commit 371598c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api-runtime/rest-runtime/VMRest.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func StartVM(c echo.Context) error {
reqInfo := cres.VMReqInfo{
IId: cres.IID{req.ReqInfo.Name, ""},
ImageType: cres.ImageType(req.ReqInfo.ImageType),
ImageIID: cres.IID{req.ReqInfo.ImageName, ""},
ImageIID: cres.IID{req.ReqInfo.ImageName, req.ReqInfo.ImageName},
VpcIID: cres.IID{req.ReqInfo.VPCName, ""},
SubnetIID: cres.IID{req.ReqInfo.SubnetName, ""},
SecurityGroupIIDs: sgIIDList,
Expand Down

0 comments on commit 371598c

Please sign in to comment.