You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the FlowETL config is validated (and default values filled in) in dags/etl.py after it is read from the config.yml file.
However, get_config_from_file () is also used in another place without subsequent calls to validate_config() and fill_config_default_values(). This can cause strange errors in production if the config file isn't valid or is missing default values.
Therefore those subsequent validation/filling steps should happen in get_config_from_file() directly.
The text was updated successfully, but these errors were encountered:
Currently the FlowETL config is validated (and default values filled in) in
dags/etl.py
after it is read from theconfig.yml
file.However,
get_config_from_file ()
is also used in another place without subsequent calls tovalidate_config()
andfill_config_default_values()
. This can cause strange errors in production if the config file isn't valid or is missing default values.Therefore those subsequent validation/filling steps should happen in
get_config_from_file()
directly.The text was updated successfully, but these errors were encountered: