Issue with v0.1.11 #85
-
I've upgraded greenmask from
Sample of my config.yaml
Has the configuration file format changed? |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 3 replies
-
No, but the last changes affected the logic of transformer parameters parsing. I will check and get back to you |
Beta Was this translation helpful? Give feedback.
-
I've just checked. This problem was caused by fixes in #76 . I implemented a workaround there because mapstructure and viper libraries force parsing the map key with lowercase. To overcome this problem we started to use two parsers - viper for the explicit parameters and built-in go yaml/json for transformer params. With the case you mentioned, it appears that if there is a parameter that parses as a string into a slice of string it causes the error. So I will refactor the workaround I've made to avoid this problem. As for now, I suggest downgrading to v0.1.10 if there aren't important changes for you. Or edit your config as below dump:
pg_dump_options:
dbname: my_database
schema:
- my_schema
jobs: 10 |
Beta Was this translation helpful? Give feedback.
-
I tried using:
I got another error that may or not be related
|
Beta Was this translation helpful? Give feedback.
-
I've just published the v0.1.12 release with proper fixes. I hope this resolves all issues. Let me know if that is okay or not |
Beta Was this translation helpful? Give feedback.
-
It did work, thank you! |
Beta Was this translation helpful? Give feedback.
-
Thank you for reporting |
Beta Was this translation helpful? Give feedback.
I've just published the v0.1.12 release with proper fixes. I hope this resolves all issues.
Let me know if that is okay or not