diff options
| author | Kamil Trzciński <ayufan@ayufan.eu> | 2016-10-06 08:42:35 +0000 |
|---|---|---|
| committer | Kamil Trzciński <ayufan@ayufan.eu> | 2016-10-06 08:42:35 +0000 |
| commit | 0bbeff3d5e6c1b5ea3b364f052ed6f777c3aa645 (patch) | |
| tree | c6c96df68d5666875b1c141be191448fa55aa510 /spec/lib | |
| parent | f90b5d5d438e77a6e849f1cc2a3b27fd1dac7ec4 (diff) | |
| parent | 7f270d041da55e1fd5c378dcf2291ba752a9114d (diff) | |
| download | gitlab-ce-0bbeff3d5e6c1b5ea3b364f052ed6f777c3aa645.tar.gz | |
Merge branch 'feature/improve-async-pipeline-processing' into 'master'
Improve asynchronous pipeline processing
## What does this MR do?
This MR improves asynchronous processing of pipeline.
## Why was this MR needed?
It eliminates some race conditions and improves performance.
## Does this MR meet the acceptance criteria?
- [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
- Tests
- [x] Added for this feature/bug
- [x] All builds are passing
## What are the relevant issue / merge request numbers?
Related merge request: !6410
Extracted from !6411
See merge request !6650
Diffstat (limited to 'spec/lib')
| -rw-r--r-- | spec/lib/gitlab/badge/coverage/report_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/badge/coverage/report_spec.rb b/spec/lib/gitlab/badge/coverage/report_spec.rb index ab0cce6e091..1547bd3228c 100644 --- a/spec/lib/gitlab/badge/coverage/report_spec.rb +++ b/spec/lib/gitlab/badge/coverage/report_spec.rb @@ -100,7 +100,7 @@ describe Gitlab::Badge::Coverage::Report do create(:ci_pipeline, opts).tap do |pipeline| yield pipeline - pipeline.build_updated + pipeline.update_status end end end |
