Details
Description
https://github.com/mongodb/mongo/blob/r3.3.2/src/mongo/shell/bulk_api.js#L883
It passes ordered as a bool, but the argument is an int32 flags field with 1 defined bit for continueOnError. This means it is always setting the bit to the opposite of what it should be. It probably doesn't have any effect today since the bulk api never does legacy inserts with more than one object to insert, but it could if we ever did.