Commit 416c10ea authored by Stan Hu's avatar Stan Hu

Merge branch 'georgekoltsov/update-decompressed-archive-size-validation-feature-flag' into 'master'

Update archive size validation feature flag

See merge request gitlab-org/gitlab!39686
parents 2d8e62cb d332df63
......@@ -28,7 +28,9 @@ module Gitlab
copy_archive
wait_for_archived_file do
validate_decompressed_archive_size if Feature.enabled?(:validate_import_decompressed_archive_size, default_enabled: true)
# Disable archive validation by default
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/235949
validate_decompressed_archive_size if Feature.enabled?(:validate_import_decompressed_archive_size)
decompress_archive
end
rescue => e
......
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