Karthikeyan Singaravelan

Results 129 comments of Karthikeyan Singaravelan

@dstandish I agree the linked PR is a good long term solution but this PR is good enough for a bugfix in 2.9.x series with 2.10 release few months away.

This was deprecated and removed in Python 3.10. Since the project supports Python 3 only collections.abc can be used. PR to fix this https://github.com/timeyyy/system_hotkey/pull/26

This failure seems to be due to https://github.com/python/cpython/pull/10902 . Relevant What's new entry text. ``` Arithmetic operations between subclasses of :class:`datetime.date` or :class:`datetime.datetime` and :class:`datetime.timedelta` objects now return an instance...

Yes, I think so but unfortunately I am not sure how it needs to be changed since I have less experience with the project. A simplified reproducer is as below...

In https://github.com/apache/airflow/pull/36916 WorkflowTrigger was added that has infinite loop to check for dag instead of 60 seconds in TaskStateTrigger. I guess this issue can be closed. cc: @pankajastro

Deprecation warnings are raised due to invalid escape sequences. This can be fixed by using raw strings or escaping the literals. pyupgrade also helps in automatic conversion : https://github.com/asottile/pyupgrade/ ....

@paramjeet01 This might be helpful https://airflow.apache.org/docs/apache-airflow/stable/administration-and-deployment/scheduler.html#fine-tuning-your-scheduler-performance

Can you please post the dag or a minimal example to reproduce this?

I am unable to reproduce this locally on main branch with the given dag code. The dag is scheduled hourly for me. Since this is a common cron expression I...

Related : https://github.com/apache/airflow/issues/19929 . It seems this was reported earlier but got closed as stale issue. We would also find this feature useful to cancel remote jobs tracked by triggerer...