Skip to content

Commit fd6acb7

Browse files
committed
Fix incorrectly named field
The fields added to NodeGetVolumeStatsRequest and NodeExpandVolumeRequest should have been staging_target_path rather than staging_path. This change corrects that mistake. Also remove the extraneous "when possible" wording around when to supply these fields.
1 parent ae4d010 commit fd6acb7

File tree

3 files changed

+228
-230
lines changed

3 files changed

+228
-230
lines changed

csi.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ message NodeGetVolumeStatsRequest {
12281228
// If not empty, it MUST be an absolute path in the root
12291229
// filesystem of the process serving this request.
12301230
// This field is OPTIONAL.
1231-
string staging_path = 3;
1231+
string staging_target_path = 3;
12321232
}
12331233

12341234
message NodeGetVolumeStatsResponse {
@@ -1349,7 +1349,7 @@ message NodeExpandVolumeRequest {
13491349
// If not empty, it MUST be an absolute path in the root
13501350
// filesystem of the process serving this request.
13511351
// This field is OPTIONAL.
1352-
string staging_path = 4;
1352+
string staging_target_path = 4;
13531353

13541354
// Volume capability describing how the CO intends to use this volume.
13551355
// This allows SP to determine if volume is being used as a block

0 commit comments

Comments
 (0)