fix: Sync partial execution version of FE and BE, also allow enforcing a specific version (#12840)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
Danny Martini
2025-02-03 14:17:31 +01:00
committed by GitHub
parent a65a9e631b
commit a15504329b
21 changed files with 193 additions and 62 deletions

View File

@@ -2293,12 +2293,10 @@ export interface IWorkflowExecutionDataProcess {
/**
* Defines which version of the partial execution flow is used.
* Possible values are:
* 0 - use the old flow
* 1 - use the new flow
* -1 - the backend chooses which flow based on the environment variable
* PARTIAL_EXECUTION_VERSION_DEFAULT
* 1 - use the old flow
* 2 - use the new flow
*/
partialExecutionVersion?: string;
partialExecutionVersion?: 1 | 2;
dirtyNodeNames?: string[];
triggerToStartFrom?: {
name: string;