Commit 680d361c authored by Stan Hu's avatar Stan Hu

Merge branch '20124-disable-repository-validation-during-precompile-step' into 'master'

Add ENV variable to skip repository storages validations

Closes #20124

See merge request !5478
parents 02d947f1 2b7e6e99
......@@ -20,6 +20,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
- Rescue Rugged::OSError (lock exists) when creating references. !5497
- Disable MySQL foreign key checks before dropping all tables. !5472
......
......@@ -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