From f93ae9afcb73dbfce50a5785b426aa9180643a3f Mon Sep 17 00:00:00 2001 From: Colin Ho Date: Fri, 23 Feb 2024 14:19:40 -0800 Subject: [PATCH] retry all --- tests/integration/sql/conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/sql/conftest.py b/tests/integration/sql/conftest.py index ba15c2e42e..6a862fd766 100644 --- a/tests/integration/sql/conftest.py +++ b/tests/integration/sql/conftest.py @@ -9,7 +9,6 @@ @tenacity.retry( stop=tenacity.stop_after_delay(60), - retry=tenacity.retry_if_exception_type(sqlalchemy.exc.DBAPIError), wait=tenacity.wait_fixed(5), reraise=True, )