Remove variadic argument from storage interface

This commit is contained in:
wojtekt
2020-11-02 15:52:51 +01:00
parent a704860194
commit 8b98305858
17 changed files with 40 additions and 34 deletions

View File

@@ -231,7 +231,7 @@ func (r *RollbackREST) setDeploymentRollback(ctx context.Context, deploymentID s
d.Spec.RollbackTo = config
finalDeployment = d
return d, nil
}), dryRun)
}), dryRun, nil)
return finalDeployment, err
}