We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 827f130 commit 925ae7aCopy full SHA for 925ae7a
test/integ/test_connection.py
@@ -1203,15 +1203,6 @@ def test_client_fetch_threads_setting(conn_cnx):
1203
assert conn.client_fetch_threads == 32
1204
1205
1206
-@pytest.mark.external
1207
-def test_client_failover_connection_url(conn_cnx):
1208
- with conn_cnx("client_failover") as conn:
1209
- with conn.cursor() as cur:
1210
- assert cur.execute("select 1;").fetchall() == [
1211
- (1,),
1212
- ]
1213
-
1214
1215
def test_connection_gc(conn_cnx):
1216
"""This test makes sure that a heartbeat thread doesn't prevent garbage collection of SnowflakeConnection."""
1217
conn = conn_cnx(client_session_keep_alive=True).__enter__()
0 commit comments