|
Use retryable writes in this deleteOne operation on fle2_crud.js.
Reasoning: After SERVER-74087, it is possible for deleteOne operations on sharded collections to bubble up a StaleConfig exception to the router after having already deleted one document. The router will have to retry the operation. fle2_crud.js relies on the accuracy of the 'deletedCount' field in the delete command response, so it needs to use retryable writes so that the correct 'deletedCount is reported on the retried operaration.
|