Skip to content

Commit

Permalink
hotfix: temporarily disable multi lock run
Browse files Browse the repository at this point in the history
  • Loading branch information
23doors committed Feb 10, 2022
1 parent f97f097 commit 9be48e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/actions/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func (d *Deploy) multilockRun(ctx context.Context) error { // nolint:gocyclo
}

func (d *Deploy) Run(ctx context.Context) error {
if d.opts.Lock && d.cfg.State.Plugin().HasAction(plugins.ActionLock) {
if d.opts.Lock && d.cfg.State.Plugin().HasAction(plugins.ActionLock) && false {
return d.multilockRun(ctx)
}

Expand Down

0 comments on commit 9be48e0

Please sign in to comment.