You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "pierrejeambrun (via GitHub)" <gi...@apache.org> on 2023/07/23 09:12:23 UTC

[GitHub] [airflow] pierrejeambrun commented on a diff in pull request #32773: Allow FileTaskHandler to delegate to instances of logging.Handler

pierrejeambrun commented on code in PR #32773:
URL: https://github.com/apache/airflow/pull/32773#discussion_r1271411797


##########
airflow/providers/microsoft/azure/log/wasb_task_handler.py:
##########
@@ -62,6 +63,7 @@ def __init__(
         **kwargs,
     ) -> None:
         super().__init__(base_log_folder, filename_template)
+        self.handler: logging.FileHandler | None = None

Review Comment:
   @eladkal is right, usually we try to split core and provider PR because it makes it harder for the release manager.
   
   In cases where it is now possible to do so, then we don't split and try to resolve things a cherry picking time. This can prove difficult and require many PRs from the provider to be manually cherry picked to allow to cherry pick the PR with core change. If it's too much effort, it can postpone the release of this patch until next minor.t
   
   



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org