Skip to content

Commit

Permalink
fix(storage): add missing required field
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Glimcher <Boris.Glimcher@emc.com>
  • Loading branch information
glimchb committed Aug 2, 2023
1 parent a877e62 commit ea2de5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func executeNvmePath(ctx context.Context, c5 pb.NvmeRemoteControllerServiceClien
log.Printf("Created Nvme path: %v", np0)
np3, err := c5.UpdateNvmePath(ctx, &pb.UpdateNvmePathRequest{
UpdateMask: &fieldmaskpb.FieldMask{Paths: []string{"*"}},
NvmePath: &pb.NvmePath{Name: np0.Name}})
NvmePath: &pb.NvmePath{Name: np0.Name, ControllerNameRef: rr0.Name}})
if err != nil {
return err
}
Expand Down

0 comments on commit ea2de5a

Please sign in to comment.