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
If config file contains non-empty dictionary for 'rename', function load_config in config.py throw exception of Schema validation error.
SchemaError: Key 'rename' error: Wrong keys '836d1983631e' in {'836d1983631e': 'room'}
Solution is to set in config.py key 'rename' to type of 'object' on
bch-gateway/bcg/config.py
Line 49 in b274e77
to
Optional('rename'): object
as is mentioned at https://github.com/keleshev/schema#extra-keys
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If config file contains non-empty dictionary for 'rename',
function load_config in config.py throw exception of Schema validation error.
Solution is to set in config.py key 'rename' to type of 'object' on
bch-gateway/bcg/config.py
Line 49 in b274e77
to
as is mentioned at https://github.com/keleshev/schema#extra-keys
The text was updated successfully, but these errors were encountered: