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:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-05-22 21:22:50 +0300
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-05-22 23:07:11 +0300
commit336635f283eab06c561134f2147a3bd1983090e1 (patch)
tree60f38b54fdba9da80f2eeca5e02e1b112a6bdcc2 /app/models/commit_status.rb
parentda0c543e289ffc2be0b91b3257bab6f1d0d5dac3 (diff)
Test the ExpireJobCacheWorker and related changes
These were untested by the cherry picked commit.
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r--app/models/commit_status.rb2
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