diff options
author | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-05-22 20:22:50 +0200 |
---|---|---|
committer | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-05-22 22:07:11 +0200 |
commit | 336635f283eab06c561134f2147a3bd1983090e1 (patch) | |
tree | 60f38b54fdba9da80f2eeca5e02e1b112a6bdcc2 /app/models/commit_status.rb | |
parent | da0c543e289ffc2be0b91b3257bab6f1d0d5dac3 (diff) | |
download | gitlab-ce-336635f283eab06c561134f2147a3bd1983090e1.tar.gz |
Test the ExpireJobCacheWorker and related changeszj-fix-pipeline-etag
These were untested by the cherry picked commit.
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r-- | app/models/commit_status.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb index 957f707a733..fe63728ea23 100644 --- a/app/models/commit_status.rb +++ b/app/models/commit_status.rb @@ -89,7 +89,7 @@ class CommitStatus < ActiveRecord::Base else PipelineUpdateWorker.perform_async(pipeline.id) end - ExpireJobCacheWorker.perform_async(pipeline.id, commit_status.id) + ExpireJobCacheWorker.perform_async(commit_status.id) end end end |