Problem with Glue?
R.version _
platform x86_64-pc-linux-gnu
arch x86_64
os linux-gnu
system x86_64, linux-gnu
status
major 4
minor 4.0
year 2024
month 04
day 24
svn rev 86474
language R
version.string R version 4.4.0 (2024-04-24) nickname Puppy Cup
packageVersion("rb3") [1] ‘0.0.11’ packageVersion("glue") [1] ‘1.8.0’Código que causa o erro
f <- download_marketdata("GetListedSupplementCompany", refdate = as.Date("2024-05-10")) Error in glue_data(.x = NULL, ..., .sep = .sep, .envir = .envir, .open = .open, : is.environment(.envir) is not TRUE
Anyone? There is a problem with glue. It works fine with "FPR"
just changed: f_(str_glue(text, .envir = list(...)))
to: f_(str_glue(text, .envir = as.environment(list(...))))
alert function, util.R file
I had the same issue using the futures_mget function and the suggestion above worked.