@@ -49,7 +49,7 @@ initialData:
49
49
documents : [ { _id: 0 } ]
50
50
51
51
tests :
52
- - description : executes a ping with $db attached
52
+ - description : always attaches $db to given command
53
53
operations :
54
54
- name : runCommand
55
55
object : plainDb
68
68
$db : plainDb
69
69
commandName : ping
70
70
71
- - description : executes a ping with lsid attached
71
+ - description : attaches the provided session lsid to ping command
72
72
operations :
73
73
- name : runCommand
74
74
object : plainDb
89
89
$db : plainDb
90
90
commandName : ping
91
91
92
- - description : executes a ping with $readPreference attached
92
+ - description : attaches the provided $readPreference to given command
93
93
operations :
94
94
- name : runCommand
95
95
object : plainDb
@@ -110,7 +110,7 @@ tests:
110
110
$db : plainDb
111
111
commandName : ping
112
112
113
- - description : executes a ping without attaching readConcern
113
+ - description : does not inherit readConcern specified at the db level
114
114
operations :
115
115
- name : runCommand
116
116
object : dbWithRC
@@ -130,7 +130,7 @@ tests:
130
130
$db : dbWithRC
131
131
commandName : ping
132
132
133
- - description : executes a ping without attaching writeConcern
133
+ - description : does not inherit writeConcern specified at the db level
134
134
operations :
135
135
- name : runCommand
136
136
object : dbWithWC
@@ -150,7 +150,7 @@ tests:
150
150
$db : dbWithWC
151
151
commandName : ping
152
152
153
- - description : executes a ping and does not retry retryable error
153
+ - description : does not retry retryable errors on given command
154
154
operations :
155
155
- name : failPoint
156
156
object : testRunner
@@ -171,7 +171,7 @@ tests:
171
171
expectError :
172
172
isError : true
173
173
174
- - description : executes a insert via runCommand inside a transaction
174
+ - description : attaches transaction fields to given command
175
175
runOnRequirements :
176
176
- topologies : [ replicaset, sharded-replicaset, load-balanced, sharded ]
177
177
minServerVersion : ' 4.4'
@@ -219,7 +219,7 @@ tests:
219
219
commandName : commitTransaction
220
220
databaseName : admin
221
221
222
- - description : executes a ping with stableApi fields attached
222
+ - description : attaches apiVersion fields to given command when stableApi is configured on the client
223
223
operations :
224
224
- name : runCommand
225
225
object : stableApiDb
0 commit comments