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
AgeCommit message (Collapse)Author
2020-04-20Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot
2020-02-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-04-15Properly expire all pipeline caches when pipeline is deletedStan Hu
When deleting a pipeline, only some of the cache structures were being expired, but not the full pipeline list. We have to synchronously schedule a pipeline cache expiration because the pipeline will be deleted if the Sidekiq expiration job picks it up. To do this, properly extract all the logic buried in the Sidekiq worker into a service, and then call the service. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60469
2019-04-01Add frozen_string_literal to spec/workersThong Kuah
Adds `# frozen_string_literal: true` to spec/workers ruby files
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-05-22Test the ExpireJobCacheWorker and related changesZ.J. van de Weg
These were untested by the cherry picked commit.
2017-04-24Simplify specs and remove unnecessary attributesToon Claes
2017-04-24Refactor ExpirePipelineCacheWorker#performToon Claes
Make it gracefully handle unexisting pipelines and refactor iterating all the merge request paths.
2017-04-24Use a better performing query to find all MRs for pipelineToon Claes
And add some specs.
2017-04-24Properly expire cache for **all** MRs of a pipelineToon Claes
Turn ExpirePipelineCacheService into Worker so it can fetch all the merge requests for which the pipeline runs or did run against.