Separate issue: Is it not possible to set boolean ...
# troubleshooting
j
Separate issue: Is it not possible to set boolean config values in environment variables? For example: When I put
primary_key_required: false
in the
target-snowflake
config, I get the expected behavior. But if I put
TARGET_SNOWFLAKE_PRIMARY_KEY_REQUIRED=false
as an environment variable into the run then it acts as if the value is
true
. What’s the workaround here?
p
does your meltano.yml have a
kind: boolean
in the setting for primary_key_required? It might be grabbing it as a string by default because it doesnt know the type
j
aha, well done!! that was it. It’s always the simple things 🙂