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 2022/10/14 09:31:48 UTC

[GitHub] [airflow] ephraimbuddy opened a new pull request, #27054: Remove info log about closing parent pipe

ephraimbuddy opened a new pull request, #27054:
URL: https://github.com/apache/airflow/pull/27054

   This log line is better removed, it doesn't seem like it's worth having since now it pollutes the logs whenever there's an import error
   
   


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


[GitHub] [airflow] jedcunningham merged pull request #27054: Remove info log about closing parent pipe

Posted by GitBox <gi...@apache.org>.
jedcunningham merged PR #27054:
URL: https://github.com/apache/airflow/pull/27054


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


[GitHub] [airflow] ephraimbuddy commented on pull request #27054: Remove info log about closing parent pipe

Posted by GitBox <gi...@apache.org>.
ephraimbuddy commented on PR #27054:
URL: https://github.com/apache/airflow/pull/27054#issuecomment-1278854402

   I don't think there's anything we can do about this trivy scan right now for dev. It won't be there on the final image. Here's my simple test:
   ```python
   
   >>> from packaging.version import Version
   >>> x = Version('2.3.4.dev0+astro.1')
   >>> y = Version('2.3.4')
   >>> x>y
   False
   >>> y>x
   True
   >>> k = Version('2.3.4+astro.1')
   >>> k>y
   True
   >>> 
   ```
   When we have `dev`, it will be less than 'rc' and 'main release'


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