From 6ccd156508bb7c95ea90d78dda8a9a6a2803cbbe Mon Sep 17 00:00:00 2001 From: Revital Sur Date: Mon, 13 Jan 2025 03:50:17 -0600 Subject: [PATCH] Minor fix. Signed-off-by: Revital Sur --- .../src/workflow_support/compile_utils/component.py | 2 +- .../src/workflow_support/compile_utils/component.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kfp/kfp_support_lib/kfp_v1_workflow_support/src/workflow_support/compile_utils/component.py b/kfp/kfp_support_lib/kfp_v1_workflow_support/src/workflow_support/compile_utils/component.py index e5fbf1f91..583e932d8 100644 --- a/kfp/kfp_support_lib/kfp_v1_workflow_support/src/workflow_support/compile_utils/component.py +++ b/kfp/kfp_support_lib/kfp_v1_workflow_support/src/workflow_support/compile_utils/component.py @@ -29,7 +29,7 @@ logger = get_logger(__name__) # path to kfp component specifications files -DEFAULT_KFP_COMPONENT_SPEC_PATH = "../../../../../kfp/kfp_ray_components/" +DEFAULT_KFP_COMPONENT_SPEC_PATH = "../../../../kfp/kfp_ray_components/" ONE_HOUR_SEC = 60 * 60 ONE_DAY_SEC = ONE_HOUR_SEC * 24 diff --git a/kfp/kfp_support_lib/kfp_v2_workflow_support/src/workflow_support/compile_utils/component.py b/kfp/kfp_support_lib/kfp_v2_workflow_support/src/workflow_support/compile_utils/component.py index ce92ba965..72068902c 100644 --- a/kfp/kfp_support_lib/kfp_v2_workflow_support/src/workflow_support/compile_utils/component.py +++ b/kfp/kfp_support_lib/kfp_v2_workflow_support/src/workflow_support/compile_utils/component.py @@ -26,7 +26,7 @@ RUN_NAME = "KFP_RUN_NAME" # path to kfp component specifications files -DEFAULT_KFP_COMPONENT_SPEC_PATH = "../../../../../kfp/kfp_ray_components/" +DEFAULT_KFP_COMPONENT_SPEC_PATH = "../../../../kfp/kfp_ray_components/" ONE_HOUR_SEC = 60 * 60 ONE_DAY_SEC = ONE_HOUR_SEC * 24