Update dags/groupuser/test.py

This commit is contained in:
cheetahadmin 2025-08-28 05:15:27 +00:00
parent 00eeb6f766
commit c8ef6a2967

@ -27,13 +27,6 @@ with DAG(
schedule='@once', schedule='@once',
start_date=datetime(2025, 8, 11, tzinfo=KST), start_date=datetime(2025, 8, 11, tzinfo=KST),
catchup=False, catchup=False,
access_control={
"DAG_Test_2_Access": {
"can_read",
"can_edit",
"can_dag_run"
},
}
) as dag: ) as dag:
t1 = PythonOperator(task_id='task1', python_callable=task1) t1 = PythonOperator(task_id='task1', python_callable=task1)
t2 = PythonOperator(task_id='task2', python_callable=task2) t2 = PythonOperator(task_id='task2', python_callable=task2)