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
2023-05-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-02-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-01-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-11-01Fix typos in comments and specsGeorge Tsiolis
2018-07-16Enable frozen string in apps/services/**/*.rbgfyoung
For directories application_settings --> labels. Partially addresses #47424.
2018-05-16Introduce a new Keys::DestroyService serviceRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-31uypdated keys controller logicJames Lopez
2017-10-06Create idea of read-only databaseToon Claes
In GitLab EE, a GitLab instance can be read-only (e.g. when it's a Geo secondary node). But in GitLab CE it also might be useful to have the "read-only" idea around. So port it back to GitLab CE. Also having the principle of read-only in GitLab CE would hopefully lead to less errors introduced, doing write operations when there aren't allowed for read-only calls. Closes gitlab-org/gitlab-ce#37534.
2017-09-20Stop using Sidekiq for updating Key#last_used_atYorick Peterse
This makes things simpler as no scheduling is involved. Further we remove the need for running a SELECT + UPDATE just to get the key and update it, whereas we only need an UPDATE when setting last_used_at directly in a request. The added service class takes care of updating Key#last_used_at without using Sidekiq. Further it makes sure we only try to obtain a Redis lease if we're confident that we actually need to do so, instead of always obtaining it. We also make sure to _only_ update last_used_at instead of also updating updated_at. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36663
2017-09-15created services for keyshaseeb