diff options
author | John Cai <jcai@gitlab.com> | 2019-07-02 10:48:13 -0700 |
---|---|---|
committer | John Cai <jcai@gitlab.com> | 2019-07-02 17:07:33 -0700 |
commit | 2ceffce190165321a1818801e245456870c4708a (patch) | |
tree | c9ed1afe9b18c24f56bc92d2efcfe7abe3c745d2 /app/models/repository.rb | |
parent | c6861b189b7faaf385bd397fd41ba93ed5649f25 (diff) | |
download | gitlab-ce-2ceffce190165321a1818801e245456870c4708a.tar.gz |
Deprecate diverging commit count with max parameterjc-deprecate-diverging-count-with-max
In 12.0, we turned the feature flag on that effectively turned off the
--max-count flag for the count diverging commits call. Since we have
commit graphs turned on, this did not affect preformance negatively.
Thus, we want to deprecate the call that passes --max-count
Diffstat (limited to 'app/models/repository.rb')
-rw-r--r-- | app/models/repository.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/models/repository.rb b/app/models/repository.rb index 992ed7485e5..d087a5a7bbd 100644 --- a/app/models/repository.rb +++ b/app/models/repository.rb @@ -6,7 +6,6 @@ class Repository REF_MERGE_REQUEST = 'merge-requests'.freeze REF_KEEP_AROUND = 'keep-around'.freeze REF_ENVIRONMENTS = 'environments'.freeze - MAX_DIVERGING_COUNT = 1000 RESERVED_REFS_NAMES = %W[ heads |