We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
repro:
from omegaconf import DictConfig import hydra from hydra.core.hydra_config import HydraConfig @hydra.main(config_name="config") def experiment(_cfg: DictConfig) -> None: print(HydraConfig.get().job_logging.handlers.file.filename) if __name__ == "__main__": experiment()
Output:
Traceback (most recent call last): File "/home/omry/dev/hydra/examples/configure_hydra/job_name/with_config_file_override.py", line 10, in experiment print(HydraConfig.get().job_logging.handlers.file.filename) omegaconf.errors.ConfigKeyError: str interpolation key 'hydra.job.name' not found full_key: hydra.job_logging.handlers.file.filename reference_type=Any object_type=dict
The text was updated successfully, but these errors were encountered:
This is backported to Hydra 1.0 (#1338) and will be released with 1.0.6.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
repro:
Output:
The text was updated successfully, but these errors were encountered: