Skip to content

Commit

Permalink
Merge pull request #3858 from 3scale/fix-rolling-updates-config-error
Browse files Browse the repository at this point in the history
Do not fail when rolling_updates.yml is missing
  • Loading branch information
mayorova authored Jul 31, 2024
2 parents 63b44d1 + 24dc120 commit 5f5d985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def cache_store_config
config.three_scale.redhat_customer_portal.enabled = false
config.three_scale.redhat_customer_portal.merge!(try_config_for(:redhat_customer_portal) || {})

config.three_scale.rolling_updates.features = try_config_for(:rolling_updates).deep_merge(try_config_for(:"extra-rolling_updates") || {})
config.three_scale.rolling_updates.features = try_config_for(:rolling_updates)&.deep_merge(try_config_for(:"extra-rolling_updates") || {})

config.three_scale.service_discovery = ActiveSupport::OrderedOptions.new
config.three_scale.service_discovery.enabled = false
Expand Down

0 comments on commit 5f5d985

Please sign in to comment.