Skip to content

Commit

Permalink
read_trialmaster default to use_cache="write"
Browse files Browse the repository at this point in the history
  • Loading branch information
DanChaltiel committed Nov 27, 2023
1 parent 4f8e38f commit 0b25608
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tibble(subjid=c(1:10, 1)) %>% assert_no_duplicate() %>% nrow()

#### Minor breaking changes

- `read_trialmaster(use_cache=FALSE)` is now the default. Caching is not that useful after all so you should opt-in rather than opt-out.
- `read_trialmaster(use_cache="write")` is now the default. Caching is not that useful after all so you should opt-in rather than opt-out.

- `read_trialmaster(extend_lookup=TRUE)` is now the default.

Expand Down
2 changes: 1 addition & 1 deletion R/trialmaster.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#' @importFrom glue glue
#' @importFrom rlang check_dots_empty
#' @importFrom stringr str_remove
read_trialmaster = function(archive, ..., use_cache=FALSE,
#' @importFrom utils object.size
read_trialmaster = function(archive, ..., use_cache="write",
clean_names_fun=NULL,
split_mixed=FALSE,
extend_lookup=TRUE,
Expand Down

0 comments on commit 0b25608

Please sign in to comment.