Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-05 18:12:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-05 18:12:12 +0300
commit8ec882085e734458ffe0fff8e2e4b72bc3871419 (patch)
tree6869bb67f3e66e9de828bc47a08577efa1e296c6 /app/models/repository.rb
parentf63850d9d6c3a81e78c93995c904ed6c0785ef19 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/repository.rb')
-rw-r--r--app/models/repository.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/repository.rb b/app/models/repository.rb
index 9039bdf1a20..f5f5deea216 100644
--- a/app/models/repository.rb
+++ b/app/models/repository.rb
@@ -244,10 +244,10 @@ class Repository
end
end
- def add_branch(user, branch_name, ref)
+ def add_branch(user, branch_name, ref, expire_cache: true)
branch = raw_repository.add_branch(branch_name, user: user, target: ref)
- after_create_branch
+ after_create_branch(expire_cache: expire_cache)
branch
rescue Gitlab::Git::Repository::InvalidRef