-
Hello! I've been trying to do a simple airbyte sync job on dagster using dagster-airbyte. Everything works up until I hit "Launch Run" where I get the following message: " Error 1: Post processing at path root:config:host of original value {'env': 'localhost'} failed: And a similar error but with the port {'env': '8000'} I used the following template on dagster where I input the host, port, and connection id: from dagster import job my_airbyte_resource = airbyte_resource.configured( sync_foobar = airbyte_sync_op.configured({"connection_id": "foobar"}, name="sync_foobar") @job(resource_defs={"airbyte": my_airbyte_resource}) I am new to using dagster so if anyone can help it would be greatly appreciated. It appears to be a problem with environmental variables but I'm not sure what to do. Any help is appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe that if you replace {"env": "localhost"} with just "localhost" it will get you past this error. |
Beta Was this translation helpful? Give feedback.
I believe that if you replace {"env": "localhost"} with just "localhost" it will get you past this error.