diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-07-19 22:49:21 +0300 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-07-19 22:49:21 +0300 |
commit | ebb6393d0eda26db10da85f0a57c3d707b4de558 (patch) | |
tree | d838339de1cc27cdc4fe6ccf7009f035475938f3 /app/services/git_push_service.rb | |
parent | 55b4f31d9274ad113386eb9ea004d7b4f1073c14 (diff) | |
download | gitlab-ce-update_for_stable.tar.gz |
Revert "Merge branch 'cache-improvement' into '7-13-stable'
"update_for_stable
This reverts commit 94c2516afc7ad8854844c05001f4a390d0bd8724, reversing
changes made to ae44e5ec064aaa9f5063732dc7bb6ee751a80ce2.
Diffstat (limited to 'app/services/git_push_service.rb')
-rw-r--r-- | app/services/git_push_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/git_push_service.rb b/app/services/git_push_service.rb index 3511392d1d8..6135ae65007 100644 --- a/app/services/git_push_service.rb +++ b/app/services/git_push_service.rb @@ -21,6 +21,7 @@ class GitPushService project.ensure_satellite_exists project.repository.expire_cache + project.update_repository_size if push_remove_branch?(ref, newrev) @push_commits = [] @@ -60,7 +61,6 @@ class GitPushService EventCreateService.new.push(project, user, @push_data) project.execute_hooks(@push_data.dup, :push_hooks) project.execute_services(@push_data.dup, :push_hooks) - ProjectCacheWorker.perform_async(project.id) end protected |