DavisVaughan / furrr

Apply Mapping Functions in Parallel using Futures
https://furrr.futureverse.org/
Other
695 stars 39 forks source link

Progress bar showing 100% even if not completed #263

Open bakaburg1 opened 1 year ago

bakaburg1 commented 1 year ago

Hello!

Thank you for this nice package!

I'm seeing something strange when using the progress bar option with plan(multisession). The bar counter always shows 100%:

Screenshot 2023-08-23 alle 18 40 52

Here's the reprex:

future::plan(future::multisession(workers = 2))

furrr::future_map(1:20, ~ Sys.sleep(1), .progress = T) |> invisible()