-
-
Notifications
You must be signed in to change notification settings - Fork 234
Closed
Description
I was expecting to be able to "unset" a property in an overriding config file. For example, consider the following:
In config/settings.yml
name: Admin
email: [email protected]
In config/settings/development.yml
name: Nobody
email: null
However, it looks like instead of unsetting the value, the derived property is untouched.
That is, the above case yields:
Settings.name # => Nobody
Settings.email # => [email protected]
Rather than what I was expecting:
Settings.name # => Nobody
Settings.email # => nil
Bug, or feature?