diff --git a/ocs_ci/ocs/resources/osd_resize.py b/ocs_ci/ocs/resources/osd_resize.py index 9d29fccdf011..2ed52d1a48c3 100644 --- a/ocs_ci/ocs/resources/osd_resize.py +++ b/ocs_ci/ocs/resources/osd_resize.py @@ -88,7 +88,7 @@ def check_resources_state_post_resize_osd(old_osd_pods, old_osd_pvcs, old_osd_pv old_name_set = {p.name for p in old_osd_pods} if new_name_set.intersection(old_name_set): raise ResourceWrongStatusException( - f"There are common values between the new osd pod names and the old osd pod names. " + f"There are shared values between the new osd pod names and the old osd pod names. " f"old osd pod names = {old_name_set}, new osd pod names = {new_name_set}" ) diff --git a/ocs_ci/ocs/resources/storage_cluster.py b/ocs_ci/ocs/resources/storage_cluster.py index 18891aab97e5..0e9f71722fe4 100644 --- a/ocs_ci/ocs/resources/storage_cluster.py +++ b/ocs_ci/ocs/resources/storage_cluster.py @@ -2711,7 +2711,6 @@ def resize_osd(new_osd_size, check_size=True): f"current osd size {current_osd_size}" ) - return True sc = get_storage_cluster() # Patch the OSD storage size path = "/spec/storageDeviceSets/0/dataPVCTemplate/spec/resources/requests/storage"