You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eprintln!("Error: arguments include the experimental option `--partial-validate`, but this executable was not built with `partial-validate` experimental feature enabled");
eprintln!("Error: arguments include the experimental option `--validation-mode permissive`, but this executable was not built with `permissive-validate` experimental feature enabled");
539
+
returnCedarExitCode::Failure;
540
+
}
541
+
#[cfg(feature = "permissive-validate")]
542
+
cedar_policy::ValidationMode::Permissive
543
+
}
544
+
ValidationMode::Partial => {
545
+
#[cfg(not(feature = "partial-validate"))]
546
+
{
547
+
eprintln!("Error: arguments include the experimental option `--validation-mode partial`, but this executable was not built with `partial-validate` experimental feature enabled");
0 commit comments