On Thu, Oct 31, 2019 at 5:31 PM Adam Mercer <[email protected]> wrote:
> We're starting to use DAG pipelines for some of our Gitlab-CI > pipelines on out GitLab instance and it's becoming clear that we need > to increase the number of dependencies that we can specify using > needs: > > https://docs.gitlab.com/ee/ci/yaml/README.html#requirements-and-limitations > > How do I disable the ci_dag_limit_needs flag in order to be able to > have up to 50 dependencies specified. All the documentation says is to > disable the flag but it doesn't tell me how or link to any > documentation giving an example? Answering my own question, this is done via the gitlab-rails console: Feature.disable(:ci_dag_limit_needs) Cheers Adam -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/gitlabhq/CA%2Bmfgz1qrtFr5Ox8XqHTZPht3o_jfoYHwH-vieCP8zTDiOsB_Q%40mail.gmail.com.
