kaxil commented on issue #51711:
URL: https://github.com/apache/airflow/issues/51711#issuecomment-2999333424
Yeah, maybe in `summary` and `description`.
```py
@dag_run_router.get(
"/watch",
tags=["experimental"],
summary="Experimental: Trigger & Watch DAG until completion",
description="🚧 This is an experimental endpoint and may change or be
removed without notice."
)
def dag_run_watch():
...
```
or
a separate prefix completely (more involved for sure)
```py
@beta_router.get("/beta/dagRun/watch")
def dag_run_watch():
...
```
--
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]