1

我正在尝试从 Azure VM 连接到 SnowFlake。我做了一个简单的类方法,如下所示:

class SQLClient():
  def __init__(self, user, password, account):
    super().__init__()
    self.conn = None
    self.user = user
    self.password = password
    self.account = account
    self.open_connection()

  def open_connection(self):
    if not self.conn:
      log.info(f'Opening DB connection.')
      self.conn = snowflake.connector.connect(user=self.user, password=self.password, account=self.account)

但是,连接器不断记录以下消息。

This connection is in OCSP Fail Open Mode. TLS Certificates would be checked for validity and revocation status. Any other Certificate Revocation related exceptions or OCSP Responder failures would be disregarded in favor of connectivity.

它不断地显示信息,一遍又一遍地老化。
有人遇到过这个问题吗?

4

0 回答 0