You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnnil, status.Error(codes.Internal, fmt.Sprintf("ControllerExpandVolume error when getting size of block volume at path %s: %v", devicePath, err))
473
+
returnnil, status.Error(codes.Internal, fmt.Sprintf("error when getting size of block volume at path %s: %v", devicePath, err))
474
474
}
475
475
ifgotBlockSizeBytes<reqBytes {
476
476
// It's possible that the somewhere the volume size was rounded up, getting more size than requested is a success :)
477
-
returnnil, status.Errorf(codes.Internal, "ControllerExpandVolume resize requested for %v but after resize volume was size %v", reqBytes, gotBlockSizeBytes)
477
+
returnnil, status.Errorf(codes.Internal, "resize requested for %v but after resize volume was size %v", reqBytes, gotBlockSizeBytes)
478
478
}
479
479
480
480
// TODO(dyzz) Some sort of formatted volume could also check the fs size.
0 commit comments