anishgirianish commented on code in PR #63491:
URL: https://github.com/apache/airflow/pull/63491#discussion_r2969137665
##########
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:
this pr was seperate from connection testing base branch, so that could be
merged independently, will add connection type once this merged and other one
is rebased. 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]