From b503abc489db3c3c03216aa56b987e59ed3ed7e7 Mon Sep 17 00:00:00 2001 From: Damian Calabresi Date: Wed, 20 Mar 2024 14:36:16 -0400 Subject: [PATCH] Update policies-pdk-configure-features-dataweave.adoc The import use pdk::hl::authentication::Authentication Was incorrect, this code doesn't compile The correct import is use pdk::authentication::Authentication --- .../ROOT/pages/policies-pdk-configure-features-dataweave.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdk/1.0/modules/ROOT/pages/policies-pdk-configure-features-dataweave.adoc b/pdk/1.0/modules/ROOT/pages/policies-pdk-configure-features-dataweave.adoc index a5a94be4a..055acc4a2 100644 --- a/pdk/1.0/modules/ROOT/pages/policies-pdk-configure-features-dataweave.adoc +++ b/pdk/1.0/modules/ROOT/pages/policies-pdk-configure-features-dataweave.adoc @@ -71,7 +71,7 @@ use anyhow::Result; use crate::generated::config::Config; -use pdk::hl::authentication::{Authentication, AuthenticationHandler}; +use pdk::authentication::{Authentication, AuthenticationHandler}; use pdk::logger::info; use pdk::hl::*; use pdk::script::{Evaluator, HandlerAttributesBinding, Value};