-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
featurea feature request or enhancementa feature request or enhancement
Description
Even if it's not documented - many packages make use of pkg.show_progress option to enable/disable progress bars. This package is no exception and it is used e.g. here:
Line 7 in 42e8249
| if (isTRUE(getOption("pkg.show_progress", FALSE))) { |
But unfortunately not everywhere and there is one little guy that still does not use it:
Lines 607 to 615 in 42e8249
| cmc__load_replica_rds <- function(self, private, max_age) { | |
| "!!DEBUG Load replica RDS?" | |
| rds <- private$get_cache_files("replica")$rds | |
| if (!file.exists(rds)) stop("No replica RDS file in cache") | |
| time <- file_get_time(rds) | |
| if (Sys.time() - time > max_age) stop("Replica RDS cache file outdated") | |
| sts <- cli_process_start("Loading metadata database") |
Metadata
Metadata
Assignees
Labels
featurea feature request or enhancementa feature request or enhancement