Skip to content

Commit a50c704

Browse files
authored
fix(api): do not export encrypted placeholder (#6148)
1 parent 48c9fbe commit a50c704

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

engine/api/workflow/workflow_exporter.go

+6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ func Pull(ctx context.Context, db gorp.SqlExecutor, cache cache.Store, proj sdk.
8080
}
8181
app.Keys = keys
8282

83+
deploymentStrategies, err := application.LoadDeploymentStrategies(ctx, db, app.ID, true)
84+
if err != nil {
85+
return wp, sdk.WrapError(err, "cannot load deployment strategies for application %s", app.Name)
86+
}
87+
app.DeploymentStrategies = deploymentStrategies
88+
8389
wf.Applications[i] = app
8490
}
8591

0 commit comments

Comments
 (0)