Hello, author of future here. You're using:
|
# Set the future plan to enable parallel execution |
|
future::plan(future::multisession) |
Please note that this is not the correct way and place to set the future plan. It will be called during package installation, but it would be applied when the package is loaded (which I think might have been your train of thought).
Please remove that completely.
FYI, also please don't set the future plan globally by other means. If you really want to set it, do so temporarily, as explained in https://future.futureverse.org/articles/future-7-for-package-developers.html#avoid-changing-the-future-backend.
Hello, author of future here. You're using:
QBMS/R/http.R
Lines 1 to 2 in f4b0ce3
Please note that this is not the correct way and place to set the future plan. It will be called during package installation, but it would be applied when the package is loaded (which I think might have been your train of thought).
Please remove that completely.
FYI, also please don't set the future plan globally by other means. If you really want to set it, do so temporarily, as explained in https://future.futureverse.org/articles/future-7-for-package-developers.html#avoid-changing-the-future-backend.