Sri Kadiyala
04/16/2021, 10:48 AMValue at path root:solids:dev_datasets:config for enum type dataset_prefix must be a string
. Attached are the screenshots of code and the value we are inputing. I tried changing the input by enclosing it with single/ double quotes. I am not sure what is missing here. Thanksalex
04/16/2021, 2:20 PMsolids:
dev_datasets:
config:
dataset_prefix: dbt_cloud_pr_
but the config_schema is set to the enum field directly so should be
solids:
dev_datasets:
config: dbt_cloud_pr_
Sri Kadiyala
04/16/2021, 2:51 PMconfig_schema={'dataset_prefix': Field(
Enum(
'dataset_prefix',
[
EnumValue('dbt_cloud_pr_'),
EnumValue('zz_dev_'),
]
)
)
},