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
Problem Summary:
The function createBuildPipelineRunInstance in the file src/k8s/groups/Tekton/PipelineRun/utils/createBuildPipelineRunInstance/index.ts contains a hardcoded value for the pipeline timeout at line 91. This should be replaced with a dynamic value that can be set based on the requirements.
Steps to Reproduce:
Open the file src/k8s/groups/Tekton/PipelineRun/utils/createBuildPipelineRunInstance/index.ts.
Navigate to line 91.
Observe the hardcoded timeout value.
Expected Behavior:
The pipeline timeout should be dynamically set based on the requirements, rather than being hardcoded.
Actual Behavior:
The pipeline timeout is hardcoded as '1h0m0s'.
Screenshots / Code Snippet:
base.spec.timeouts={pipeline: '1h0m0s',};
Environment
OS: macOS Sonoma (aarch64)
IDE: IntelliJ IDEA 2024.2.2, Ultimate Edition
JDK/SDK Version: Java SDK version 19, Go SDK 1.22.5, Go programming language version 1.22
Additional Information
To implement this change, the function should allow setting the pipeline timeout dynamically based on input parameters or configuration, ensuring flexibility and adaptability for different pipeline requirements.
The text was updated successfully, but these errors were encountered:
Description
Problem Summary:
The function
createBuildPipelineRunInstance
in the filesrc/k8s/groups/Tekton/PipelineRun/utils/createBuildPipelineRunInstance/index.ts
contains a hardcoded value for the pipeline timeout at line 91. This should be replaced with a dynamic value that can be set based on the requirements.Steps to Reproduce:
src/k8s/groups/Tekton/PipelineRun/utils/createBuildPipelineRunInstance/index.ts
.Expected Behavior:
The pipeline timeout should be dynamically set based on the requirements, rather than being hardcoded.
Actual Behavior:
The pipeline timeout is hardcoded as
'1h0m0s'
.Screenshots / Code Snippet:
Environment
Additional Information
To implement this change, the function should allow setting the pipeline timeout dynamically based on input parameters or configuration, ensuring flexibility and adaptability for different pipeline requirements.
The text was updated successfully, but these errors were encountered: