ashb commented on code in PR #43015:
URL: https://github.com/apache/airflow/pull/43015#discussion_r1800810818


##########
airflow/api_fastapi/app.py:
##########
@@ -44,20 +44,46 @@ def init_dag_bag(app: FastAPI) -> None:
     app.state.dag_bag = get_dag_bag()
 
 
-def create_app() -> FastAPI:
+def create_task_api_app(app: FastAPI) -> None:
+    """Create FastAPI app for task API."""
+    from airflow.api_fastapi.views.task_sdk import task_sdk_router
+
+    task_api_app = FastAPI(
+        title="Airflow Task API",

Review Comment:
   ```suggestion
           title="Airflow Task Execution API",
   ```
   etc



-- 
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-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to