summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js')
-rw-r--r--jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js b/jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js
index 43bdc7ea8a8..9f8ed997895 100644
--- a/jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js
+++ b/jstests/concurrency/fsm_workload_helpers/auto_retry_transaction.js
@@ -1,7 +1,6 @@
'use strict';
var {withTxnAndAutoRetry, isKilledSessionCode} = (function() {
-
/**
* Calls 'func' with the print() function overridden to be a no-op.
*
@@ -71,9 +70,9 @@ var {withTxnAndAutoRetry, isKilledSessionCode} = (function() {
// is a retryable write.
if (!commitRes.ok && retryOnKilledSession && isKilledSessionCode(commitRes.code)) {
print("-=-=-=- Retrying commit after killed session code, sessionId: " +
- tojsononeline(session.getSessionId()) + ", txnNumber: " +
- tojsononeline(session.getTxnNumber_forTesting()) + ", res: " +
- tojsononeline(commitRes));
+ tojsononeline(session.getSessionId()) +
+ ", txnNumber: " + tojsononeline(session.getTxnNumber_forTesting()) +
+ ", res: " + tojsononeline(commitRes));
continue;
}