这是我通过 python 连接到雪花时遇到的错误?
OperationalError: 250003: Failed to execute request: ("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')])",)
我使用以下方式连接:
ctx = snowflake.connector.connect(
user='JoeBloggs',
password='pwd',
account='JoeBloggs',
database='DEV_DATA'
)
我是否需要输入其他参数,例如端口、主机等,我是如何找到这些的?