sdebruyn opened a new issue, #23087:
URL: https://github.com/apache/airflow/issues/23087
### Apache Airflow version
2.2.5 (latest released)
### What happened
In the UI I see `1 day, 00:00:00` under _Schedule_ instead of the summary
I've defined in my timetable:
```py
@property
def summary(self) -> str:
return "Daily (DailyTimetable)"
```
### What you think should happen instead
According to the docs, overriding `summary` should change how the timetable
is represented in the UI:
https://airflow.apache.org/docs/apache-airflow/stable/howto/timetable.html#timetable-display-in-ui
### How to reproduce
```py
from airflow.timetables.base import DagRunInfo, DataInterval,
TimeRestriction, Timetable
class DailyTimetable(Timetable):
@property
def summary(self) -> str:
return "Daily (DailyTimetable)"
```
I can't share our implementation of this timetable, but I added the relevant
code for the summary that is deployed.
### Operating System
docker image apache/airflow:2.2.5-python3.9
### Versions of Apache Airflow Providers
Apache Airflow 2.2.5
### Deployment
Official Apache Airflow Helm Chart
### Deployment details
_No response_
### Anything else
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]