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
2022-09-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add 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
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.
2017-04-07Use `Ci::ExpirePipelineCacheService` to set `ProjectPipelinestatus`Bob Van Landuyt
2017-04-07Check if a commit belongs to pipeline before trying to expire cacheToon Claes
2017-04-07Enable polling for pipelines table other pagesToon Claes
Also poll for pipeline changes on: - Pipeline table on commit page - Pipeline table on merge request page - Pipeline table on new merge request page
2017-04-07Use Etag caching for pipelines jsonToon Claes
Enable caching in the Etag::Middleware and when a pipeline changes status, expire the cache for the project pipelines path.