Skip to content

Commit

Permalink
fix(api): do not export encrypted placeholder (#6148)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored Apr 25, 2022
1 parent 48c9fbe commit a50c704
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions engine/api/workflow/workflow_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ func Pull(ctx context.Context, db gorp.SqlExecutor, cache cache.Store, proj sdk.
}
app.Keys = keys

deploymentStrategies, err := application.LoadDeploymentStrategies(ctx, db, app.ID, true)
if err != nil {
return wp, sdk.WrapError(err, "cannot load deployment strategies for application %s", app.Name)
}
app.DeploymentStrategies = deploymentStrategies

wf.Applications[i] = app
}

Expand Down

0 comments on commit a50c704

Please sign in to comment.