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
  • Loading branch information
Lee-W committed Jan 25, 2024
1 parent 26782c5 commit d25e224
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions astronomer/providers/amazon/aws/operators/redshift_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class RedshiftDataOperatorAsync(RedshiftDataOperator):
def __init__(
self,
*,
poll_interval: int = 5,
**kwargs: Any,
) -> None:
warnings.warn(
Expand All @@ -26,5 +25,4 @@ def __init__(
DeprecationWarning,
stacklevel=2,
)
kwargs["poll_interval"] = poll_interval
super().__init__(deferrable=True, **kwargs)

0 comments on commit d25e224

Please sign in to comment.