-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deprecate KubernetesPodOperatorAsync #1465
Conversation
b9d09bd
to
c3e372a
Compare
if self.do_xcom_push: | ||
return result | ||
self.logging_interval = logging_interval | ||
super().__init__(deferrable=True, **kwargs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we also need to pass logging_interval
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it's present in the kwargs, it will be passed is. The default previous value here for logging_interval was None, and the upstream has default None too, so no additional care needs to be taken.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1465 +/- ##
==========================================
+ Coverage 98.21% 98.28% +0.06%
==========================================
Files 91 91
Lines 4536 4485 -51
==========================================
- Hits 4455 4408 -47
+ Misses 81 77 -4 ☔ View full report in Codecov by Sentry. |
astronomer/providers/cncf/kubernetes/operators/kubernetes_pod.py
Outdated
Show resolved
Hide resolved
astronomer/providers/cncf/kubernetes/operators/kubernetes_pod.py
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will merge this so that we can test our regressions DAGs together on all RCs and create a separate PR later to update the versions in setup.cfg to released versions from the current RCs
Deperecate KubernetesPodOperatorAsync and proxy it to its OSS counterpart.
related: #1418