This repository was archived by the owner on Feb 4, 2022. It is now read-only.
File tree 1 file changed +13
-6
lines changed
1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -328,20 +328,27 @@ class ClientSession extends EventEmitter {
328
328
return maybeRetryOrThrow ( err ) ;
329
329
} ) ;
330
330
}
331
-
332
- return retryTransaction ( ) ;
333
331
}
334
332
}
335
333
334
+ const WRITE_CONCERN_FAILED_CODE = 64 ;
335
+ const UNSATISFIABLE_WRITE_CONCERN_CODE = 100 ;
336
+ const UNKNOWN_REPL_WRITE_CONCERN_CODE = 79 ;
337
+ const NON_DETERMINISTIC_WRITE_CONCERN_ERRORS = [
338
+ 'CannotSatisfyWriteConcern' ,
339
+ 'UnknownReplWriteConcern' ,
340
+ 'UnsatisfiableWriteConcern'
341
+ ] ;
342
+
336
343
function isWriteConcernTimeoutError ( err ) {
337
- return err . code === 64 && ! ! ( err . errInfo && err . errInfo . wtimeout === true ) ;
344
+ return err . code === WRITE_CONCERN_FAILED_CODE && ! ! ( err . errInfo && err . errInfo . wtimeout === true ) ;
338
345
}
339
346
340
347
function isUnknownTransactionCommitResult ( err ) {
341
348
return (
342
- [ 'CannotSatisfyWriteConcern' , 'UnknownReplWriteConcern' , 'UnsatisfiableWriteConcern' ] . indexOf (
343
- err . codeName
344
- ) === - 1
349
+ NON_DETERMINISTIC_WRITE_CONCERN_ERRORS . indexOf ( err . codeName ) === - 1 &&
350
+ err . code !== UNSATISFIABLE_WRITE_CONCERN_CODE &&
351
+ err . code !== UNKNOWN_REPL_WRITE_CONCERN_CODE
345
352
) ;
346
353
}
347
354
You can’t perform that action at this time.
0 commit comments