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 I have config sections:
[table: MyTable] min-provisioned-reads=500 [table:MyTable gsi:^.*$] min-provisioned-reads=100
This just would not work, because the table search get_tables_and_gsis would find the first config section and ignore the second section.
get_tables_and_gsis
This is obviously a careless bug.
The text was updated successfully, but these errors were encountered:
You may want to try reversing the order of table and gsi, so that it matches the documentation (http://dynamic-dynamodb.readthedocs.io/en/latest/configuration_options.html):
[table: MyTable] min-provisioned-reads=500 [gsi: ^.*$ table: MyTable] min-provisioned-reads=100
Sorry, something went wrong.
Reversing the order has no effect. In fact the parser code does not care about the order.
No branches or pull requests
If I have config sections:
This just would not work, because the table search
get_tables_and_gsis
would find the first config section and ignore the second section.This is obviously a careless bug.
The text was updated successfully, but these errors were encountered: