From c8ef6a296722a3e793f7bbd7453d93ff3da77d81 Mon Sep 17 00:00:00 2001 From: cheetahadmin Date: Thu, 28 Aug 2025 05:15:27 +0000 Subject: [PATCH] Update dags/groupuser/test.py --- dags/groupuser/test.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dags/groupuser/test.py b/dags/groupuser/test.py index 3b2052e..8776518 100644 --- a/dags/groupuser/test.py +++ b/dags/groupuser/test.py @@ -27,13 +27,6 @@ with DAG( schedule='@once', start_date=datetime(2025, 8, 11, tzinfo=KST), catchup=False, - access_control={ - "DAG_Test_2_Access": { - "can_read", - "can_edit", - "can_dag_run" - }, - } ) as dag: t1 = PythonOperator(task_id='task1', python_callable=task1) t2 = PythonOperator(task_id='task2', python_callable=task2)