Skip to content

Commit

Permalink
force use of ajv engine
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAxthelm committed May 27, 2024
1 parent 40cdfa5 commit 90f3beb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/parse_json_params.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ parse_params <- function(
validation_results <- jsonvalidate::json_validate(
json = jsonlite::toJSON(full_params, auto_unbox = TRUE),
schema = schema_file,
verbose = TRUE
verbose = TRUE,
engine = "ajv"
)
if (validation_results) {
log_trace("Validation successful.")
Expand Down

0 comments on commit 90f3beb

Please sign in to comment.