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-05-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-06-18Turn on Cat-File cache by defaultZeger-Jan van de Weg
The feature flag has been introduced an was turned off by default, now the it will default to be turned on. That change would still allow users to turn this feature off by leveraging the Rails console by running: `Feature.disable("gitaly_catfile-cache")` Another option is to manage the number of items the LRU cache will contain, by updating the `config.toml` for Gitaly. This would be the `catfile_cache_size`: https://gitlab.com/gitlab-org/gitaly/blob/0dcb5c579e63754f557aef91a4fa7a00e5b8b127/config.toml.example#L27 Closes: https://gitlab.com/gitlab-org/gitaly/issues/1712
2019-06-18Move Gitaly feature flag logic to Feature::GitalyZeger-Jan van de Weg
The GitalyClient held a lot of logic which was all very tightly coupled. In this instance the feature logic was extracted to make it do just a little less and create a bit more focus in the GitalyClient's responsibilies.