-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nested future_map / map generates warning on ..1 argument #57
Comments
This warning happens deep in the stack of For my reference, it happens deep in
|
I get similar issue but an error not warning: my code like require(tibble) enframe(list) %$% future_map2(1:length(name),value,function(x,y) { Error: Failed to retrieve the result of MulticoreFuture () from the forked worker (on localhost; PID 12549). Post-mortem diagnostic: No process exists with this PID, i.e. the forked localhost worker is no longer alive. |
I've confirmed that this is the same as HenrikBengtsson/future#402 so I'm closing in favor of that |
Consider these examples:
Created on 2018-11-19 by the reprex package (v0.2.1.9000)
2. Works as expected
Created on 2018-11-19 by the reprex package (v0.2.1.9000)
3. But this one throws a warning
Created on 2018-11-19 by the reprex package (v0.2.1.9000)
4. And standard
purrr
does notCreated on 2018-11-19 by the reprex package (v0.2.1.9000)
I believe it is worth making
future_map
consistent withmap
providing that a user understands to what exactly..1
is evaluated in a nestedmap
scenario.The text was updated successfully, but these errors were encountered: