Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(CDC_OPTIONS): Use boolean value for cdc preimage option
CDC_SETTINGS_NAMES_VALUES['preimage'] uses string values "true" "false" instead of bool True False. This cause assertion error if it was changed ``` AssertionError: CDC extension settings are differs. Current: {'delta': 'full', 'enabled': True, 'preimage': True, 'postimage': True, 'ttl': '1800'} expected: {'delta': 'full', 'enabled': True, 'preimage': 'true', 'postimage': True, 'ttl': '1800'} ```
- Loading branch information