Unite Active Storage configs in load_defaults '6.1' into one if-section

When I was comparing 'defaults' for 6.1 in this method and our configuring
guide, I was confused that some active_storage options are missing.

This change doesn't bring any implementation changes and feels like
a cosmetic change. Please feel free to close this if you think so and don't
see that we could benefit this change.
This commit is contained in:
bogdanvlviv 2021-01-08 15:11:52 +02:00
parent b5b4bdaeac
commit 5e0d451966
No known key found for this signature in database
GPG Key ID: E4ACD76A6DB6DFDD

@ -163,10 +163,6 @@ def load_defaults(target_version)
active_record.legacy_connection_handling = false
end
if respond_to?(:active_storage)
active_storage.track_variants = true
end
if respond_to?(:active_job)
active_job.retry_jitter = 0.15
active_job.skip_after_callbacks_if_terminated = true
@ -187,6 +183,8 @@ def load_defaults(target_version)
end
if respond_to?(:active_storage)
active_storage.track_variants = true
active_storage.queues.analysis = nil
active_storage.queues.purge = nil
end