anishgirianish commented on code in PR #63491:
URL: https://github.com/apache/airflow/pull/63491#discussion_r3695257014
##########
airflow-core/src/airflow/executors/workloads/base.py:
##########
@@ -20,12 +20,30 @@
import os
from abc import ABC
+from enum import Enum
from typing import TYPE_CHECKING
from pydantic import BaseModel, ConfigDict, Field
if TYPE_CHECKING:
from airflow.api_fastapi.auth.tokens import JWTGenerator
+ from airflow.executors.workloads.types import WorkloadKey
+
+
+class WorkloadType(str, Enum):
Review Comment:
Connection test is now included thank you
--
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]