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
> renv:::available_packages(type = "source", repos = "https://crab.rstudio.com")
* Querying repositories for available source packages ... Done!
Warning in value[[3L]](cond) :
restarting interrupted promise evaluation
* Querying repositories for available source packages ... Done!
Warning: error downloading 'https://crab.rstudio.com/src/contrib/PACKAGES.rds' [curl: (6) Could not resolve host: crab.rstudio.com]
Warning: error downloading 'https://crab.rstudio.com/src/contrib/PACKAGES.gz' [curl: (6) Could not resolve host: crab.rstudio.com]
Warning: error downloading 'https://crab.rstudio.com/src/contrib/PACKAGES' [curl: (6) Could not resolve host: crab.rstudio.com]
Error: could not retrieve available packages for url 'https://crab.rstudio.com/src/contrib'
The text was updated successfully, but these errors were encountered:
Should be resolved now -- the key bit is ensuring we don't try to force the promise twice; that can happen if (for example) the promise is forced while a tryCatch() error handler is active that discards the error, e.g.
> foo <- function(x) { try(x); x }
> foo(stop())
Error in try(x) :
Error in foo(stop()) :
(converted from warning) restarting interrupted promise evaluation
We should see if we can avoid these. Examples:
Which gives:
The text was updated successfully, but these errors were encountered: