-
My Dagster code that uses snowflake and/or botocore suddenly started to fail on import / on deployment, with an error like this:
How can I get my Dagster deployment working again? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is caused by an upstream issue in the snowflake-connector-python package: snowflakedb/snowflake-connector-python#2109 allowing versions of the To fix it, you can add the following to the Python environment your code is running in, usually by editing your
A workaround will be included in the next released version of |
Beta Was this translation helpful? Give feedback.
This is caused by an upstream issue in the snowflake-connector-python package: snowflakedb/snowflake-connector-python#2109 allowing versions of the
PyOpenSSL
package that aren't actually supported by the package.To fix it, you can add the following to the Python environment your code is running in, usually by editing your
setup.py
orrequirements.txt
orpyproject.toml
file:A workaround will be included in the next released version of
dagster-snowflake
, planned for the first week of December 2024.