Keep tmp/repositories during clean-up

This commit is contained in:
Jacob Vosmaer 2014-09-29 17:02:45 +02:00
parent 813e272896
commit 51f8352dca
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@ v 7.4.0
- Refactor test coverage tools usage. Use SIMPLECOV=true to generate it locally
- Increase unicorn timeout to 60 seconds
- Sort search autocomplete projects by stars count so most popular go first
- Do not delete tmp/repositories itself during clean-up, only its contents
v 7.3.1
- Fix ref parsing in Gitlab::GitAccess

View File

@ -230,7 +230,8 @@ class Repository
# Remove archives older than 2 hours
def clean_old_archives
Gitlab::Popen.popen(%W(find #{Gitlab.config.gitlab.repository_downloads_path} -mmin +120 -delete))
repository_downloads_path = Gitlab.config.gitlab.repository_downloads_path
Gitlab::Popen.popen(%W(find #{repository_downloads_path} -not -path #{repository_downloads_path} -mmin +120 -delete))
end
def branches_sorted_by(value)