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
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-08Improve gitaly_address error messageAhmad Sherif
Closes gitaly#174
2017-04-05Deal with Rails autoload instance variable resetsJacob Vosmaer
Rails auto-load (a development feature) can end up resetting instance variables on classes. This breaks Gitlab::GitalyClient, which uses instance variables to keep global hashes to look up channels and addresses. This change adds code that regenerates the hashes if they suddenly become nil.
2017-04-03Add support for Gitaly calls over TCP connectionAhmad Sherif
Closes gitaly#166
2017-03-29Change socket_path to gitaly_addressJacob Vosmaer
2017-03-29Separate GRPC channels per repository storageJacob Vosmaer
2017-03-21Rake task that can install gitaly at a tag versionJacob Vosmaer
2017-03-15Use Gitaly for CommitController#showAhmad Sherif
2017-03-02Add internal endpoint to notify post-receive to GitalyAlejandro Rodríguez