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-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-04-20Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot
2020-01-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-12-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-05Use stub_rails_env for Rails.env stubbingAsh McKenzie
RailsHelpers.stub_rails_env takes care of stubbing Rails.env
2019-08-23Handle when server info doesn't have the storage in questionJohn Cai
2019-07-30Fix exception handling in Gitaly autodetectionStan Hu
In SELinux, the file cannot be written, and `Errno::EACCES`, not `Errno::ACCESS` is thrown. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65328
2019-07-19Fix Gitaly auto-detection cachingStan Hu
If `GitalyClient#can_use_disk?` returned `false`, it was never cached properly and led to excessive number of Gitaly calls. Instead of using `cached_value.present?`, we need to check `cached_value.nil?`. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64802
2019-07-15Remove catfile cache feature flagJohn Cai
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.
2019-04-29Add gitaly session id & catfile-cache feature flagJohn Cai
2019-03-12Add feature flag to enforce gitaly request limitsMark Lapierre
We typically don't want to enforce request limits in production However, we have some production-like test environments, i.e., ones where `Rails.env.production?` returns `true`. We do want to be able to check if the limit is being exceeded while testing in those environments.
2019-01-25Add connection_data method to Gitaly clientValery Sizov
Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7434
2018-12-21More tls gitaly docsAhmad Hassan
2018-12-20Log certificate loading errors into sentryAhmad Hassan
2018-12-19Followups on reviewAhmad Hassan
2018-12-11Merge remote-tracking branch 'origin/master' into support-gitaly-tlsAhmad Hassan
2018-11-20Fix bug where ID is not setZeger-Jan van de Weg
On HEAD~ we remove the ID from the class, which created a bug. Given we don't need the ID anymore, it has been removed and simplified.
2018-11-20Revert "Merge branch 'revert-e2aa2177' into 'master'"Zeger-Jan van de Weg
This reverts merge request !23229
2018-11-20Revert "Merge branch 'zj-improve-gitaly-pb' into 'master'"Sean McGivern
This reverts merge request !23140
2018-11-19Remove duplicate tests for GitalyZeger-Jan van de Weg
The disabling of Gitaly was basically stubbing `Feature.enabled?` call, which was never triggered.
2018-10-31Add more specsAhmad Hassan
2018-10-31Add gitaly client specsAhmad Hassan
2018-01-25Add a gRPC health check to ensure Gitaly is upStan Hu
This will enable Geo to skip shards that not operational. Relates to gitlab-org/gitlab-ee#4329
2017-12-28Move encoding methods to the more general EncodingHelperAlejandro Rodríguez
2017-11-29Add timeouts for Gitaly callsAndrew Newdigate
2017-10-03Fix for Gitaly nil encoding issueAndrew Newdigate
2017-09-19Detect n+1 issues involving GitalyAndrew Newdigate
2017-09-07Gitaly feature toggles are on by default in development environmentsAndrew Newdigate
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-18Renamed Gitaly servicesAndrew Newdigate
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-06-01Add feature toggles through FlipperAlejandro Rodríguez
2017-05-15Don't reuse gRPC channelsJacob Vosmaer
It seems that bad things happen when two gRPC stubs share one gRPC channel so let's stop doing that. The downside of this is that we create more gRPC connections; one per stub.
2017-04-03Add support for Gitaly calls over TCP connectionAhmad Sherif
Closes gitaly#166