Skip to content
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

feat(NODE-6338): implement client bulk write error handling #4262

Merged
merged 29 commits into from
Oct 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: console
durran committed Oct 8, 2024
commit 4d57b895ad6bc3ba66a09194513855e5584da186
1 change: 0 additions & 1 deletion src/operations/execute_operation.ts
Original file line number Diff line number Diff line change
@@ -262,7 +262,6 @@ async function tryOperation<
try {
// If tries > 0 and we are command batching we need to reset the batch.
if (tries > 0 && operation.hasAspect(Aspect.COMMAND_BATCHING)) {
console.log('retrying');
operation.resetBatch();
}
return await operation.execute(server, session);