-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Code:
class ConfigRoot(BaseConfig): # type: ignore
mail: dict[str, MailConfig]
redis: RedisConfig
CONFIG_SOURCES = FileSource(file="config.toml", file_from_env="CONFIG_FILE")What I'm looking for is for a way to make it so that if CONFIG_FILE is not set, fallback to config.toml. Right now file is prioritized, then env, then cl. There should probably be a Value error thrown if more than one of the flags are truthy? As they can not work together?
ConfZ/confz/loaders/file_loader.py
Lines 21 to 32 in ecd5b0b
| def _get_filename(cls, config_source: FileSource) -> Path: | |
| if config_source.file is not None: | |
| if isinstance(config_source.file, bytes): | |
| raise FileException("Can not detect filename from type bytes") | |
| file_path = Path(config_source.file) | |
| elif config_source.file_from_env is not None: | |
| if config_source.file_from_env not in os.environ: | |
| raise FileException( | |
| f"Environment variable '{config_source.file_from_env}' is not set." | |
| ) | |
| file_path = Path(os.environ[config_source.file_from_env]) | |
| elif config_source.file_from_cl is not None: |
For me, it seems the fix can be as simple as swapping the elif with if statements, and making from env and from cl mutually exclusive, for example? Or make the params order sensitive somehow?
Alternatives:
Having multiple file sources all marked as optional seems like a bit of an iffy approach? As we end up with either a validation error or an empty object I need to check, instead some error regarding resolution.
Example:
class ConfigRoot(BaseConfig): # type: ignore
mail: dict[str, MailConfig]
redis: RedisConfig
CONFIG_SOURCES = [
FileSource(file_from_env="CONFIG_FILE", optional=True),
FileSource(file="config.toml", optional=True),
]In this scenario, neither CONFIG_FILE is set and config.toml is available. We then end up with a pydantic validation error instead on any loading related error.