This repository was archived by the owner on Feb 4, 2022. It is now read-only.
File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ const MongoNetworkError = require('./error').MongoNetworkError;
11
11
const MongoWriteConcernError = require ( './error' ) . MongoWriteConcernError ;
12
12
const Transaction = require ( './transactions' ) . Transaction ;
13
13
const TxnState = require ( './transactions' ) . TxnState ;
14
+ const isPromiseLike = require ( './utils' ) . isPromiseLike ;
14
15
15
16
function assertAlive ( session , callback ) {
16
17
if ( session . serverSession == null ) {
@@ -328,7 +329,19 @@ function userExplicitlyEndedTransaction(session) {
328
329
function attemptTransaction ( session , startTime , fn , options ) {
329
330
session . startTransaction ( options ) ;
330
331
331
- return fn ( session )
332
+ let promise ;
333
+ try {
334
+ promise = fn ( session ) ;
335
+ } catch ( err ) {
336
+ promise = Promise . reject ( err ) ;
337
+ }
338
+
339
+ if ( ! isPromiseLike ( promise ) ) {
340
+ session . abortTransaction ( ) ;
341
+ throw new TypeError ( 'Function provided to `withTransaction` must return a Promise' ) ;
342
+ }
343
+
344
+ return promise
332
345
. then ( ( ) => {
333
346
if ( userExplicitlyEndedTransaction ( session ) ) {
334
347
return ;
Original file line number Diff line number Diff line change @@ -106,12 +106,23 @@ function collationNotSupported(server, cmd) {
106
106
return cmd && cmd . collation && maxWireVersion ( server ) < 5 ;
107
107
}
108
108
109
+ /**
110
+ * Checks if a given value is a Promise
111
+ *
112
+ * @param {* } maybePromise
113
+ * @return true if the provided value is a Promise
114
+ */
115
+ function isPromiseLike ( maybePromise ) {
116
+ return maybePromise && typeof maybePromise . then === 'function' ;
117
+ }
118
+
109
119
module . exports = {
110
120
uuidV4,
111
121
calculateDurationInMs,
112
122
relayEvents,
113
123
collationNotSupported,
114
124
retrieveEJSON,
115
125
retrieveKerberos,
116
- maxWireVersion
126
+ maxWireVersion,
127
+ isPromiseLike
117
128
} ;
You can’t perform that action at this time.
0 commit comments