Skip to content

Commit

Permalink
Fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
xing-yang committed Sep 14, 2022
1 parent e1048db commit cf06518
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions csi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ service Controller {
}

rpc DeleteVolumeGroup(DeleteVolumeGroupRequest)
returns (DeleteVolumeGroupResponse) }
returns (DeleteVolumeGroupResponse) {
option (alpha_method) = true;
}

Expand Down Expand Up @@ -1148,7 +1148,7 @@ message ModifyVolumeGroupRequest {
// If no volume_ids are provided, all existing volumes will
// be removed from the group.
// This field is OPTIONAL.
repeated string volume_ids = 3;
repeated string volume_ids = 2;
}

message ModifyVolumeGroupResponse {
Expand Down
4 changes: 2 additions & 2 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ service Controller {
}
rpc DeleteVolumeGroup(DeleteVolumeGroupRequest)
returns (DeleteVolumeGroupResponse) }
returns (DeleteVolumeGroupResponse) {
option (alpha_method) = true;
}
Expand Down Expand Up @@ -1848,7 +1848,7 @@ message ModifyVolumeGroupRequest {
// If no volume_ids are provided, all existing volumes will
// be removed from the group.
// This field is OPTIONAL.
repeated string volume_ids = 3;
repeated string volume_ids = 2;
}
message ModifyVolumeGroupResponse {
Expand Down

0 comments on commit cf06518

Please sign in to comment.