summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllison Easton <allison.easton@mongodb.com>2023-08-17 15:58:07 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-08-18 16:01:23 +0000
commit65e7a6c880ffcd84ab2a203e5406751ca011359c (patch)
tree7083e7bfe0f4879610e375786778cc0b206833ae
parent66deadc81494901065ad455a49bcbbdbf9a8651b (diff)
SERVER-80183 Remove operationTime check from store_retryable_find_and_modify_images_in_side_collection.js
(cherry picked from commit a4ba1d18516e23bcde86f3c4337e586fa1c613a4)
-rw-r--r--jstests/noPassthrough/store_retryable_find_and_modify_images_in_side_collection.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/jstests/noPassthrough/store_retryable_find_and_modify_images_in_side_collection.js b/jstests/noPassthrough/store_retryable_find_and_modify_images_in_side_collection.js
index fde47c8956d..15d486be0bd 100644
--- a/jstests/noPassthrough/store_retryable_find_and_modify_images_in_side_collection.js
+++ b/jstests/noPassthrough/store_retryable_find_and_modify_images_in_side_collection.js
@@ -49,6 +49,9 @@ function assertRetryCommand(cmdResponse, retryResponse) {
// The retry response can contain a different 'clusterTime' from the initial response.
delete cmdResponse.$clusterTime;
delete retryResponse.$clusterTime;
+ // The retry response can contain a different 'operationTime' from the initial response.
+ delete cmdResponse.operationTime;
+ delete retryResponse.operationTime;
// The retry response contains the "retriedStmtId" field but the initial response does not.
delete retryResponse.retriedStmtId;