Skip to content

Commit

Permalink
fix wrong sample code for "dag level permissions" (apache#36350)
Browse files Browse the repository at this point in the history
  • Loading branch information
oshyun authored Dec 21, 2023
1 parent 667a5b2 commit 1e6fa73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ Setting ``access_control`` on a DAG will overwrite any previously existing DAG-l
dag_id="example_fine_grained_access",
start_date=pendulum.datetime(2021, 1, 1, tz="UTC"),
access_control={
"Viewer": {"can_edit", "can_create", "can_delete"},
"Viewer": {"can_edit", "can_read", "can_delete"},
},
)
Expand Down

0 comments on commit 1e6fa73

Please sign in to comment.