-
Updated
Feb 9, 2022 - Java
scheduler
Here are 1,978 public repositories matching this topic...
-
Updated
Feb 22, 2022 - Java
-
Updated
Feb 23, 2022 - JavaScript
-
Updated
Feb 11, 2022 - Python
-
Updated
Feb 12, 2022 - C#
-
Updated
Feb 23, 2022 - Groovy
Right now, we've got this chunk of code:
def _columns_to_markdown(columns: Mapping[str, Any]) -> str:
return (
textwrap.dedent(
"""
| Name | Description |
| - | - |
"""
)
+ "\n".join([f"| {name} | {metadata['description']}" for name, metadata in columns.items()])
)
Instead of representing them with markdown, we
-
Updated
Jan 27, 2022 - Shell
-
Updated
May 16, 2021 - Ruby
-
Updated
Feb 22, 2022 - PHP
Is there a way to make a job re-occur N milliseconds after it finished previous time?
-
Updated
Feb 21, 2022 - TypeScript
-
Updated
Aug 23, 2021 - Java
-
Updated
Feb 21, 2022 - Ruby
-
Updated
Jan 21, 2022 - TypeScript
The tests fail sometimes due to millisecond based timing on some of the tests. I over optimized for local testing and it's causing tests to fail in CI occasionally. The CI pipeline is running in docker with limited resources, so not able to handle quite as precise time as my local machine.
-
Updated
Feb 22, 2022 - JavaScript
-
Updated
Feb 11, 2022 - Ruby
Improve this page
Add a description, image, and links to the scheduler topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scheduler topic, visit your repo's landing page and select "manage topics."


Body
days_agois deprecated apache/airflow#21653We have several references to the function in test suite / example dags.
Task:
there should be no imports of
airflow.utils.dates import days_agoin the code.In most cases we can simple replace with
datetime(2022, 1, 1)Committer