- Feb 24, 2020
-
-
GitLab Bot authored
-
- May 07, 2019
-
-
Stan Hu authored
Unlike uploads that have been uploaded with Tempfile, the project import/export archives are stored in a temporary cache directory and remain there if: 1. Object storage is enabled 2. `move_to_store` is set to `true`. CarrierWave will leave these files there until disk space runs out or a clean step is run manually. If `move_to_store` is set to `false`, CarrierWave will remove the files after storing them. However, unlike a local file, with object storage, the file is still copied, so setting `move_to_store` to `true` doesn't buy us anything. To ensure files are cleaned up, we can just inherit from the GitlabUploader implementation of `move_to_store`, which returns `true` if it's a local file, `false` otherwise. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60656
-
- Aug 02, 2018
-
-
James Lopez authored
- Refactor uploads manager - Refactor importer, update import spec - Add more object storage specs
-
- Jul 22, 2018
-
-
gfyoung authored
Enables frozen string for new files in directories that had been previously covered in previous MR's. Partially addresses #47424.
-
- Jul 06, 2018
-
-
James Lopez authored
-