Skip to content

Commit

Permalink
Remove target_workflow_id from workflow run plan (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei authored Oct 17, 2022
1 parent b13df09 commit ea4a8c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion cli/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,6 @@ func createWorkflowRunPlan(targetWorkflow string, workflows map[string]models.Wo
NoOutputTimeoutMode: configs.NoOutputTimeout > 0,
SecretFilteringMode: configs.IsSecretFiltering,
SecretEnvsFilteringMode: configs.IsSecretEnvsFiltering,
TargetWorkflowID: targetWorkflow,
ExecutionPlan: executionPlan,
}
}
Expand Down
3 changes: 1 addition & 2 deletions models/workflow_run_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,5 @@ type WorkflowRunPlan struct {
SecretFilteringMode bool `json:"secret_filtering_mode"`
SecretEnvsFilteringMode bool `json:"secret_envs_filtering_mode"`

TargetWorkflowID string `json:"target_workflow_id"`
ExecutionPlan []WorkflowExecutionPlan `json:"execution_plan"`
ExecutionPlan []WorkflowExecutionPlan `json:"execution_plan"`
}

0 comments on commit ea4a8c2

Please sign in to comment.