mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2026-07-24 10:48:11 +00:00
fix: provider settings in top level field of configuration (#1161)
Configuration for some providers was given in the sub-field `provider_settings` combining the settings of several providers. Pydantic does not understand this very well and the configuration became cumbersome, especially in EOSdash. All provider settings from the `provider-settings` sub-field are now lifted to the top level field of the configuration. The changes are automatically migrated in the configuration. Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
This commit is contained in:
@@ -16,10 +16,8 @@ def provider(config_eos):
|
||||
settings = {
|
||||
"feedintariff": {
|
||||
"provider": "FeedInTariffFixed",
|
||||
"provider_settings": {
|
||||
"FeedInTariffFixed": {
|
||||
"feed_in_tariff_kwh": 0.078,
|
||||
},
|
||||
"feedintarifffixed": {
|
||||
"feed_in_tariff_kwh": 0.078,
|
||||
},
|
||||
}
|
||||
}
|
||||
@@ -46,10 +44,8 @@ def test_invalid_provider(provider, config_eos):
|
||||
settings = {
|
||||
"feedintariff": {
|
||||
"provider": "<invalid>",
|
||||
"provider_settings": {
|
||||
"FeedInTariffFixed": {
|
||||
"feed_in_tariff_kwh": 0.078,
|
||||
},
|
||||
"feedintarifffixed": {
|
||||
"feed_in_tariff_kwh": 0.078,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user