Skip to content

Commit

Permalink
fix(amazon): remove unnecessay poll_interval in RedshiftDataOperatorA…
Browse files Browse the repository at this point in the history
…sync
Lee-W committed Jan 25, 2024
1 parent 19576cd commit 3c9313c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions astronomer/providers/amazon/aws/operators/redshift_data.py
Original file line number Diff line number Diff line change
@@ -13,8 +13,6 @@ class RedshiftDataOperatorAsync(RedshiftDataOperator):

def __init__(
self,
*,
poll_interval: int = 5,
**kwargs: Any,
) -> None:
warnings.warn(
@@ -26,5 +24,4 @@ def __init__(
DeprecationWarning,
stacklevel=2,
)
kwargs["poll_interval"] = poll_interval
super().__init__(deferrable=True, **kwargs)

0 comments on commit 3c9313c

Please sign in to comment.