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
2018-10-03Backport of "Use Geo log to remove files when migrated to object storage"Toon Claes
2018-07-05Enable frozen string in apps/validators/*.rbgfyoung
Partially addresses #47424.
2018-03-22Backport ee-40781-os-to-ceMicaël Bergeron
2018-02-28Merge branch '4163-move-uploads-to-object-storage' into 'master'Sean McGivern
Move uploads to object storage Closes #4163 See merge request gitlab-org/gitlab-ee!3867
2018-02-28Merge branch 'zj-auto-upload-job-artifacts' into 'master'Kamil Trzciński
Transfer job archives after creation See merge request gitlab-org/gitlab-ee!3646
2018-02-28Merge branch 'zj-multiple-artifacts-ee' into 'master'Grzegorz Bizon
Multiple artifacts ee See merge request gitlab-org/gitlab-ee!3276
2018-02-28Merge branch 'jej/lfs-object-storage' into 'master'Douwe Maan
Can migrate LFS objects to S3 style object storage Closes #2841 See merge request !2760
2017-06-06Set artifact working directory to be in the destination store to prevent ↵Stan Hu
unnecessary I/O Similar to #33218, build artifacts were being uploaded into a CarrierWave temporary directory in the Rails root directory before moved to their final destination, which could cause a copy across filesystems. This merge request refactors the work in !11866 so that any uploader can just override `work_dir` to change the default implementation. Closes #33274
2017-06-05Fix LFS timeouts when trying to save large filesStan Hu
The following was happening: 1. Workhorse stores an LFS file in /var/opt/gitlab/gitlab-rails/shared/lfs-objects 2. CarrierWave then renames the file to a temporary directory (e.g. /opt/gitlab/embedded/service/gitlab-rails/tmp) 3. CarrierWave then renames the file to its final location (e.g. /var/opt/gitlab/gitlab-rails/shared/lfs-objects) When the LFS upload path was on a different filesystem than the Rails installation, step 2 could take a longer than 10 seconds, at which point Workhorse would time out with "badgateway: failed after 10s: context canceled". This change makes the work path in the same root as the LFS storage path, preventing moves across filesystems. Closes #33218
2017-05-02Support uploaders for personal snippets commentsJarka Kadlecova
2016-12-15Add Gitlab::Middleware::MultipartJacob Vosmaer
2016-07-24Remove magic comments from Ruby files (!5456)winniehell
2016-06-29Enable Style/SpaceAfterComma Rubocop copGrzegorz Bizon
2015-11-16Add support for git lfs.Marin Jankovski