diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-05-21 00:07:36 +0200 |
---|---|---|
committer | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-05-22 22:07:11 +0200 |
commit | da0c543e289ffc2be0b91b3257bab6f1d0d5dac3 (patch) | |
tree | bb38c9f317e237d1a4b242b6a0e74d1bdc4349ac /app/models/commit_status.rb | |
parent | 33961ee418e861a021d7f70bdb1540de9d159b95 (diff) | |
download | gitlab-ce-da0c543e289ffc2be0b91b3257bab6f1d0d5dac3.tar.gz |
Add MISSING e-tag refresh of resource for Job, and Pipeline Graph
Diffstat (limited to 'app/models/commit_status.rb')
-rw-r--r-- | app/models/commit_status.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/commit_status.rb b/app/models/commit_status.rb index ffafc678968..957f707a733 100644 --- a/app/models/commit_status.rb +++ b/app/models/commit_status.rb @@ -89,6 +89,7 @@ class CommitStatus < ActiveRecord::Base else PipelineUpdateWorker.perform_async(pipeline.id) end + ExpireJobCacheWorker.perform_async(pipeline.id, commit_status.id) end end end |