Commit 2b7e6e99 authored by Alejandro Rodríguez's avatar Alejandro Rodríguez

Add ENV variable to skip repository storages validations

parent 9fead2b8
......@@ -13,6 +13,7 @@ v 8.11.0 (unreleased)
v 8.10.2 (unreleased)
- User can now search branches by name. !5144
- Add ENV variable to skip repository storages validations
- Fix backup restore. !5459
- Use project ID in repository cache to prevent stale data from persisting across projects. !5460
......
......@@ -26,4 +26,4 @@ def validate_storages
end
end
validate_storages unless Rails.env.test?
validate_storages unless Rails.env.test? || ENV['SKIP_STORAGE_VALIDATION'] == 'true'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment