Skip to content

Commit

Permalink
Merge pull request #2 from mzpqnxow/bugfix/issue-2879
Browse files Browse the repository at this point in the history
Fix for spotify#2879
  • Loading branch information
mzpqnxow authored Jul 11, 2022
2 parents 85f6673 + 183c016 commit e0140be
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions luigi/configuration/toml_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def read(self, config_paths):

# freeze dict params
for section, content in self.data.items():
if section.lower() == 'logging':
continue
for key, value in content.items():
if isinstance(value, dict):
self.data[section][key] = recursively_freeze(value)
Expand Down

0 comments on commit e0140be

Please sign in to comment.