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
This test currently passes on master (it shouldn't). The problem seems to be the my-bool serialization. Replacing it with a literal value of false in the map fn makes the test fail (as expected).
I think the problem has to do with the anonymous fn serialization. my-bool is out scope when deserialized and executed on some worker. The question is how we should deal with it.
The text was updated successfully, but these errors were encountered:
The test that illustrates this issue is the following (and adapted version of the first
map-test
)This test currently passes on master (it shouldn't). The problem seems to be the
my-bool
serialization. Replacing it with a literal value offalse
in the map fn makes the test fail (as expected).I think the problem has to do with the anonymous fn serialization.
my-bool
is out scope when deserialized and executed on some worker. The question is how we should deal with it.The text was updated successfully, but these errors were encountered: