Snowflake has connection issues
Expected Behavior
I try to connect to snowflake using a private key
Current Behavior
I get an error from the snowflake python connection object saying that I need to set the warehouse.
Steps to reproduce
I ran the demo
Specifications
- Version:
- Platform:
- Subsystem:
Possible Solution
I removed this double quoting and it worked
# line 61 in snowflake_utils.py for k, v in kwargs.items(): if k in ["role", "warehouse", "database", "schema_"]: kwargs[k] = f'"{v}"'
Happy to replicate through the testing setup and make a PR