From 9c5c1cd9564993e6638bef940f814f2322933d33 Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 6 Aug 2024 16:29:34 -0700 Subject: [PATCH 1/2] add InterfaceError to retryable_exceptions --- dbt/adapters/redshift/connections.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dbt/adapters/redshift/connections.py b/dbt/adapters/redshift/connections.py index d3fbcafea..521bcff86 100644 --- a/dbt/adapters/redshift/connections.py +++ b/dbt/adapters/redshift/connections.py @@ -382,6 +382,7 @@ def exponential_backoff(attempt: int): redshift_connector.OperationalError, redshift_connector.DatabaseError, redshift_connector.DataError, + redshift_connector.InterfaceError, ] open_connection = cls.retry_connection( From ad1d794e5b985111bbc86cbaff65173e8dbd7d1d Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 6 Aug 2024 16:30:34 -0700 Subject: [PATCH 2/2] add changie --- .changes/unreleased/Fixes-20240806-163017.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Fixes-20240806-163017.yaml diff --git a/.changes/unreleased/Fixes-20240806-163017.yaml b/.changes/unreleased/Fixes-20240806-163017.yaml new file mode 100644 index 000000000..20b595930 --- /dev/null +++ b/.changes/unreleased/Fixes-20240806-163017.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: add InterfaceError to retryable_exceptions +time: 2024-08-06T16:30:17.348677-07:00 +custom: + Author: colin-rogers-dbt + Issue: "661"