Skip to content

Commit

Permalink
Fix 436 for updates (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel committed Jul 11, 2024
1 parent 602245e commit 0d06d6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v3/services/scenariosvc/internal/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func (s *GrpcScenarioServer) UpdateScenario(ctx context.Context, req *scenariopb
scenario.Spec.VirtualMachines = vms
}
if rawVmTasks != "" {
vmTasks, err := util.GenericUnmarshal[[]hfv1.VirtualMachineTasks](rawSteps, "raw_vm_tasks")
vmTasks, err := util.GenericUnmarshal[[]hfv1.VirtualMachineTasks](rawVmTasks, "raw_vm_tasks")
if err != nil {
return hferrors.GrpcParsingError(req, "raw_vm_tasks")
}
Expand Down

0 comments on commit 0d06d6f

Please sign in to comment.