Hi, I am getting this error when trying to set up aws with ecs ```with Flow("user_brand_campaigns", ...
m
Hi, I am getting this error when trying to set up aws with ecs
Copy code
with Flow("user_brand_campaigns", storage=STORAGE, config=RUN_CONFIG) as user_profile_flow:
TypeError: __init__() got an unexpected keyword argument 'config'
k
I think you want to use
run_config
instead of
config
?
🙏 1