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:
authorGabriel Mazetto <gabriel@gitlab.com>2016-04-19 03:52:43 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-04-19 12:00:30 +0300
commit5330af3fa69d4c47437ce27480c7f3b74652b2ca (patch)
treeebb871f468004a74cac5d737a231cf92defdf210 /app/services/git_tag_push_service.rb
parent2384bed4d8e3f79461664911715e5f2a2a66c008 (diff)
Using single builder for push and tag events
Diffstat (limited to 'app/services/git_tag_push_service.rb')
-rw-r--r--app/services/git_tag_push_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/git_tag_push_service.rb b/app/services/git_tag_push_service.rb
index f4a1d0da5d8..64271d8bc5c 100644
--- a/app/services/git_tag_push_service.rb
+++ b/app/services/git_tag_push_service.rb
@@ -38,6 +38,6 @@ class GitTagPushService < BaseService
def build_system_push_data
Gitlab::PushDataBuilder.
- build_system(project, current_user, params[:oldrev], params[:newrev], params[:ref])
+ build(project, current_user, params[:oldrev], params[:newrev], params[:ref], [], '')
end
end