Skip to content

Commit 5e663a1

Browse files
committed
Fix query string in Trino authorization checks by updating the resource identifier from "trino.sys" to "trino_sys" for consistency.
1 parent 023ec8b commit 5e663a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdp-server/src/api/trino/checks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async fn check_trino_system_allowed(
6262
) -> bool {
6363
let allowed = query_allowed_cached(
6464
state,
65-
&build_allowed_query(query, "trino.sys"),
65+
&build_allowed_query(query, "trino_sys"),
6666
cache_control,
6767
)
6868
.await;

0 commit comments

Comments
 (0)