DavisVaughan/furrr

Progress bar showing 100% even if not completed

Opened this issue · 0 comments

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()