You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/01/29 17:37:25 UTC

[GitHub] [airflow] MatthewRBruce opened a new pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

MatthewRBruce opened a new pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292
 
 
   ---
   Issue link: WILL BE INSERTED BY [boring-cyborg](https://github.com/kaxil/boring-cyborg)
   
   Make sure to mark the boxes below before creating PR: [x]
   
   - [X] Description above provides context of the change
   - [X] Commit message/PR title starts with `[AIRFLOW-NNNN]`. AIRFLOW-NNNN = JIRA ID<sup>*</sup>
   - [X] Unit tests coverage for changes (not needed for documentation changes)
   - [X] Commits follow "[How to write a good git commit message](http://chris.beams.io/posts/git-commit/)"
   - [X] Relevant documentation is updated including usage instructions.
   - [X] I will engage committers as explained in [Contribution Workflow Example](https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst#contribution-workflow-example).
   
   <sup>*</sup> For document-only changes commit message can start with `[AIRFLOW-XXXX]`.
   
   ---
   In case of fundamental code change, Airflow Improvement Proposal ([AIP](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvements+Proposals)) is needed.
   In case of a new dependency, check compliance with the [ASF 3rd Party License Policy](https://www.apache.org/legal/resolved.html#category-x).
   In case of backwards incompatible changes please leave a note in [UPDATING.md](https://github.com/apache/airflow/blob/master/UPDATING.md).
   Read the [Pull Request Guidelines](https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst#pull-request-guidelines) for more information.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] MatthewRBruce commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
MatthewRBruce commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#discussion_r374180329
 
 

 ##########
 File path: airflow/providers/cncf/kubernetes/operators/kubernetes_pod.py
 ##########
 @@ -170,6 +172,7 @@ def __init__(self,  # pylint: disable=too-many-arguments,too-many-locals
                  schedulername: Optional[str] = None,
                  full_pod_spec: Optional[k8s.V1Pod] = None,
                  init_containers: Optional[List[k8s.V1Container]] = None,
+                 log_events_on_failure: bool = True,
 
 Review comment:
   Default set to False now.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] potiuk commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
potiuk commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#discussion_r374156332
 
 

 ##########
 File path: airflow/providers/cncf/kubernetes/operators/kubernetes_pod.py
 ##########
 @@ -277,11 +281,19 @@ def execute(self, context):
                     pod,
                     startup_timeout=self.startup_timeout_seconds,
                     get_logs=self.get_logs)
+            except AirflowException:
+                if self.log_events_on_failure:
+                    for event in launcher.read_pod_events(pod).items:
+                        self.log.error("Pod Event: %s - %s", event.reason, event.message)
+                raise
             finally:
                 if self.is_delete_operator_pod:
                     launcher.delete_pod(pod)
 
             if final_state != State.SUCCESS:
+                if self.log_events_on_failure:
 
 Review comment:
   I think we should protect against writing the logs twice. In case of Airflow Exception thrown it is more than likely that the final_state will not be a success, so the logs will be written twice. I think we should have a flag "logs_dumped" or smth like that an only write logs once.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] potiuk commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#issuecomment-581616299
 
 
   Thanks @MatthewRBruce !

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] potiuk merged pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
potiuk merged pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] codecov-io edited a comment on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
codecov-io edited a comment on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#issuecomment-581455946
 
 
   # [Codecov](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=h1) Report
   > Merging [#7292](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=desc) into [master](https://codecov.io/gh/apache/airflow/commit/a02265382d5c0381c5b8dbd05547bdda493fc6f1?src=pr&el=desc) will **decrease** coverage by `0.01%`.
   > The diff coverage is `71.42%`.
   
   [![Impacted file tree graph](https://codecov.io/gh/apache/airflow/pull/7292/graphs/tree.svg?width=650&token=WdLKlKHOAU&height=150&src=pr)](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=tree)
   
   ```diff
   @@            Coverage Diff             @@
   ##           master    #7292      +/-   ##
   ==========================================
   - Coverage   86.35%   86.34%   -0.02%     
   ==========================================
     Files         871      871              
     Lines       40613    40627      +14     
   ==========================================
   + Hits        35073    35079       +6     
   - Misses       5540     5548       +8
   ```
   
   
   | [Impacted Files](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=tree) | Coverage Δ | |
   |---|---|---|
   | [airflow/kubernetes/pod\_launcher.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9rdWJlcm5ldGVzL3BvZF9sYXVuY2hlci5weQ==) | `92.25% <100%> (+0.28%)` | :arrow_up: |
   | [...viders/cncf/kubernetes/operators/kubernetes\_pod.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvY25jZi9rdWJlcm5ldGVzL29wZXJhdG9ycy9rdWJlcm5ldGVzX3BvZC5weQ==) | `93.61% <55.55%> (-4.04%)` | :arrow_down: |
   | [...w/providers/apache/hive/operators/mysql\_to\_hive.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvYXBhY2hlL2hpdmUvb3BlcmF0b3JzL215c3FsX3RvX2hpdmUucHk=) | `100% <0%> (ø)` | :arrow_up: |
   | [airflow/security/kerberos.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9zZWN1cml0eS9rZXJiZXJvcy5weQ==) | `76.08% <0%> (ø)` | :arrow_up: |
   | [airflow/providers/mysql/operators/mysql.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvbXlzcWwvb3BlcmF0b3JzL215c3FsLnB5) | `100% <0%> (ø)` | :arrow_up: |
   | [airflow/providers/apache/hive/hooks/hive.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvYXBhY2hlL2hpdmUvaG9va3MvaGl2ZS5weQ==) | `77.55% <0%> (ø)` | :arrow_up: |
   | [airflow/jobs/backfill\_job.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9qb2JzL2JhY2tmaWxsX2pvYi5weQ==) | `90.72% <0%> (-1.16%)` | :arrow_down: |
   | [airflow/hooks/dbapi\_hook.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9ob29rcy9kYmFwaV9ob29rLnB5) | `91.73% <0%> (ø)` | :arrow_up: |
   | [airflow/jobs/scheduler\_job.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9qb2JzL3NjaGVkdWxlcl9qb2IucHk=) | `89.34% <0%> (ø)` | :arrow_up: |
   
   ------
   
   [Continue to review full report at Codecov](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=continue).
   > **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta)
   > `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`
   > Powered by [Codecov](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=footer). Last update [a022653...80866b9](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] potiuk commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
potiuk commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#discussion_r374155152
 
 

 ##########
 File path: airflow/providers/cncf/kubernetes/operators/kubernetes_pod.py
 ##########
 @@ -170,6 +172,7 @@ def __init__(self,  # pylint: disable=too-many-arguments,too-many-locals
                  schedulername: Optional[str] = None,
                  full_pod_spec: Optional[k8s.V1Pod] = None,
                  init_containers: Optional[List[k8s.V1Container]] = None,
+                 log_events_on_failure: bool = True,
 
 Review comment:
   I think for backwards compatibility we could set it to False, though i am on the fence on this one. It's super-useful and it does not change the behaviour of the pod launcher but it prints useful log files on failure, so I am not sure if backwards compatibility is needed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] MatthewRBruce commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
MatthewRBruce commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#discussion_r374162361
 
 

 ##########
 File path: airflow/providers/cncf/kubernetes/operators/kubernetes_pod.py
 ##########
 @@ -170,6 +172,7 @@ def __init__(self,  # pylint: disable=too-many-arguments,too-many-locals
                  schedulername: Optional[str] = None,
                  full_pod_spec: Optional[k8s.V1Pod] = None,
                  init_containers: Optional[List[k8s.V1Container]] = None,
+                 log_events_on_failure: bool = True,
 
 Review comment:
   That's a good point - It can result in an error if the RBAC policy isn't set to allow the airflow SA  `pods/get`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] boring-cyborg[bot] commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
boring-cyborg[bot] commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#issuecomment-579872862
 
 
   Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contribution Guide (https://github.com/apache/airflow/blob/master/CONTRIBUTING.rst)
   Here are some useful points:
   - Pay attention to the quality of your code (flake8, pylint and type annotations). Our [pre-commits]( https://github.com/apache/airflow/blob/master/STATIC_CODE_CHECKS.rst#prerequisites-for-pre-commit-hooks) will help you with that.
   - In case of a new feature add useful documentation (in docstrings or in `docs/` directory). Adding a new operator? Check this short [guide](https://github.com/apache/airflow/blob/master/docs/howto/custom-operator.rst) Consider adding an example DAG that shows how users should use it.
   - Consider using [Breeze environment](https://github.com/apache/airflow/blob/master/BREEZE.rst) for testing locally, it’s a heavy docker but it ships with a working Airflow and a lot of integrations.
   - Be patient and persistent. It might take some time to get a review or get the final approval from Committers.
   Apache Airflow is a community-driven project and together we are making it better 🚀.
   In case of doubts contact the developers at:
   Mailing List: dev@airflow.apache.org
   Slack: https://apache-airflow-slack.herokuapp.com/
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] MatthewRBruce commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
MatthewRBruce commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#discussion_r374166065
 
 

 ##########
 File path: airflow/providers/cncf/kubernetes/operators/kubernetes_pod.py
 ##########
 @@ -277,11 +281,19 @@ def execute(self, context):
                     pod,
                     startup_timeout=self.startup_timeout_seconds,
                     get_logs=self.get_logs)
+            except AirflowException:
+                if self.log_events_on_failure:
+                    for event in launcher.read_pod_events(pod).items:
+                        self.log.error("Pod Event: %s - %s", event.reason, event.message)
+                raise
             finally:
                 if self.is_delete_operator_pod:
                     launcher.delete_pod(pod)
 
             if final_state != State.SUCCESS:
+                if self.log_events_on_failure:
 
 Review comment:
   If we hit an exception at lines 285-288, we would log the pod events, then re-raise the exception which shouldn't allow execution to the logging at lines 294-296 - so I don't think it's possible to log them twice - unless I'm missing something here, I haven't had coffee yet :)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] boring-cyborg[bot] commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
boring-cyborg[bot] commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#issuecomment-581616386
 
 
   Awesome work, congrats on your first merged pull request!
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] potiuk commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
potiuk commented on a change in pull request #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#discussion_r374167679
 
 

 ##########
 File path: airflow/providers/cncf/kubernetes/operators/kubernetes_pod.py
 ##########
 @@ -277,11 +281,19 @@ def execute(self, context):
                     pod,
                     startup_timeout=self.startup_timeout_seconds,
                     get_logs=self.get_logs)
+            except AirflowException:
+                if self.log_events_on_failure:
+                    for event in launcher.read_pod_events(pod).items:
+                        self.log.error("Pod Event: %s - %s", event.reason, event.message)
+                raise
             finally:
                 if self.is_delete_operator_pod:
                     launcher.delete_pod(pod)
 
             if final_state != State.SUCCESS:
+                if self.log_events_on_failure:
 
 Review comment:
   You are right. No worries. I am after my 3rd coffee and still missed the `raise`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [airflow] codecov-io commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure

Posted by GitBox <gi...@apache.org>.
codecov-io commented on issue #7292: [AIRFLOW-6678] Pull event logs from Kubernetes pod on failure
URL: https://github.com/apache/airflow/pull/7292#issuecomment-581455946
 
 
   # [Codecov](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=h1) Report
   > Merging [#7292](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=desc) into [master](https://codecov.io/gh/apache/airflow/commit/92c72f40df24aa9bec8a5bf5159bcd29c85698cf?src=pr&el=desc) will **increase** coverage by `0.14%`.
   > The diff coverage is `100%`.
   
   [![Impacted file tree graph](https://codecov.io/gh/apache/airflow/pull/7292/graphs/tree.svg?width=650&token=WdLKlKHOAU&height=150&src=pr)](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=tree)
   
   ```diff
   @@            Coverage Diff             @@
   ##           master    #7292      +/-   ##
   ==========================================
   + Coverage   86.21%   86.36%   +0.14%     
   ==========================================
     Files         871      871              
     Lines       40570    40627      +57     
   ==========================================
   + Hits        34979    35086     +107     
   + Misses       5591     5541      -50
   ```
   
   
   | [Impacted Files](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=tree) | Coverage Δ | |
   |---|---|---|
   | [...viders/cncf/kubernetes/operators/kubernetes\_pod.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvY25jZi9rdWJlcm5ldGVzL29wZXJhdG9ycy9rdWJlcm5ldGVzX3BvZC5weQ==) | `97.87% <100%> (+0.22%)` | :arrow_up: |
   | [airflow/kubernetes/pod\_launcher.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9rdWJlcm5ldGVzL3BvZF9sYXVuY2hlci5weQ==) | `92.25% <100%> (+0.28%)` | :arrow_up: |
   | [...w/providers/apache/hive/operators/mysql\_to\_hive.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvYXBhY2hlL2hpdmUvb3BlcmF0b3JzL215c3FsX3RvX2hpdmUucHk=) | `100% <0%> (ø)` | :arrow_up: |
   | [airflow/security/kerberos.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9zZWN1cml0eS9rZXJiZXJvcy5weQ==) | `76.08% <0%> (ø)` | :arrow_up: |
   | [airflow/providers/mysql/operators/mysql.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvbXlzcWwvb3BlcmF0b3JzL215c3FsLnB5) | `100% <0%> (ø)` | :arrow_up: |
   | [airflow/utils/sqlalchemy.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy91dGlscy9zcWxhbGNoZW15LnB5) | `96.66% <0%> (ø)` | :arrow_up: |
   | [...providers/google/cloud/example\_dags/example\_gcs.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvZ29vZ2xlL2Nsb3VkL2V4YW1wbGVfZGFncy9leGFtcGxlX2djcy5weQ==) | `96.29% <0%> (-3.71%)` | :arrow_down: |
   | [airflow/providers/apache/hive/hooks/hive.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9wcm92aWRlcnMvYXBhY2hlL2hpdmUvaG9va3MvaGl2ZS5weQ==) | `77.55% <0%> (ø)` | :arrow_up: |
   | [airflow/jobs/backfill\_job.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9qb2JzL2JhY2tmaWxsX2pvYi5weQ==) | `91.59% <0%> (-0.29%)` | :arrow_down: |
   | [airflow/api/common/experimental/trigger\_dag.py](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree#diff-YWlyZmxvdy9hcGkvY29tbW9uL2V4cGVyaW1lbnRhbC90cmlnZ2VyX2RhZy5weQ==) | `98.07% <0%> (+0.11%)` | :arrow_up: |
   | ... and [10 more](https://codecov.io/gh/apache/airflow/pull/7292/diff?src=pr&el=tree-more) | |
   
   ------
   
   [Continue to review full report at Codecov](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=continue).
   > **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta)
   > `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`
   > Powered by [Codecov](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=footer). Last update [92c72f4...92b8506](https://codecov.io/gh/apache/airflow/pull/7292?src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services