This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 744f9e5ad54 Add pool column to task instances list. (#51185)
744f9e5ad54 is described below
commit 744f9e5ad54e93ad73ed410bf66b9a1c1604bb05
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Thu May 29 14:31:58 2025 +0530
Add pool column to task instances list. (#51185)
---
.../src/airflow/ui/src/pages/TaskInstances/TaskInstances.tsx | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstances.tsx
b/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstances.tsx
index 0c72f527890..bf36fef056c 100644
--- a/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstances.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstances.tsx
@@ -135,6 +135,11 @@ const taskInstanceColumns = (
enableSorting: false,
header: "Try Number",
},
+ {
+ accessorKey: "pool",
+ enableSorting: false,
+ header: "Pool",
+ },
{
accessorKey: "operator",
enableSorting: false,