Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 2bc705c

Browse files
committed
feat(withTransaction): retry transaction commit on wtimeout
Fixes NODE-1877
1 parent f036d3c commit 2bc705c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/sessions.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,6 @@ class ClientSession extends EventEmitter {
271271
}
272272

273273
const MAX_WITH_TRANSACTION_TIMEOUT = 120000;
274-
const WRITE_CONCERN_FAILED_CODE = 64;
275274
const UNSATISFIABLE_WRITE_CONCERN_CODE = 100;
276275
const UNKNOWN_REPL_WRITE_CONCERN_CODE = 79;
277276
const NON_DETERMINISTIC_WRITE_CONCERN_ERRORS = new Set([
@@ -284,10 +283,6 @@ function hasNotTimedOut(startTime, max) {
284283
return Date.now() - startTime < max;
285284
}
286285

287-
function isWriteConcernTimeoutError(err) {
288-
return err.code === WRITE_CONCERN_FAILED_CODE && !!(err.errInfo && err.errInfo.wtimeout === true);
289-
}
290-
291286
function isUnknownTransactionCommitResult(err) {
292287
return (
293288
!NON_DETERMINISTIC_WRITE_CONCERN_ERRORS.has(err.codeName) &&
@@ -299,7 +294,7 @@ function isUnknownTransactionCommitResult(err) {
299294
function attemptTransactionCommit(session, startTime, fn, options) {
300295
return session.commitTransaction().catch(err => {
301296
if (err instanceof MongoError && hasNotTimedOut(startTime, MAX_WITH_TRANSACTION_TIMEOUT)) {
302-
if (err.hasErrorLabel('UnknownTransactionCommitResult') && !isWriteConcernTimeoutError(err)) {
297+
if (err.hasErrorLabel('UnknownTransactionCommitResult')) {
303298
return attemptTransactionCommit(session, startTime, fn, options);
304299
}
305300

0 commit comments

Comments
 (0)