-
Type:
Task
-
Resolution: Unresolved
-
Priority:
Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Logging
-
Server Programmability
-
None
-
None
-
None
-
None
-
None
-
None
-
None
When I configure the below failpoint on driver side:
{
"configureFailPoint": "failCommand",
"mode": {
"times": 1 // pay attention here
},
"data": {
"failCommands": ["ping"],
"appName": "app",
"blockConnection": true,
"blockTimeMS": 1000
}
}
with times : 1, I would expect this value in the server log too, but it doesn't happen.
The actual log content is:
{
"t": {
"$date": "2020-09-16T02:38:33.175+03:00"
},
"s": "W",
"c": "CONTROL",
"id": 23829,
"ctx": "conn3",
"msg": "Set failpoint",
"attr": {
"failPointName": "failCommand",
"failPoint": {
"mode": 3,
"data": {
"failCommands": ["ping"],
"appName": "app",
"blockConnection": true,
"blockTimeMS": 1000
},
"timesEntered": 0
}
}
}
Is it a expected?