Mongo 4.4 error code 262 Operation exceeded time limit in user asserts

Hi Team,
We have upgraded mongodb from 4.2 to 4.4. After the upgrade we are seeing below user asserts: ExceededTimelimit. Please let me know which parameter to adjust on this?

Error

"msg":"Internal assertion","attr":{"error":{"code":262,"codeName":"ExceededTimeLimit","errmsg":"operation exceeded time limit"},"location":"{fileName:\"src/mongo/util/interruptible.h\", line:398, functionName:\"operator()\"}"}}

I am guessing it is related to below

                        "type" : "op",
                        "host" : "hostname:27018",
                        "desc" : "conn18708",
                        "connectionId" : 18708,
                        "client" : "IP:39780",
                        "clientMetadata" : {
                                "driver" : {
                                        "name" : "NetworkInterfaceTL",
                                        "version" : "4.4.17"
                                },
                                "os" : {
                                        "type" : "Linux",
                                        "name" : "Ubuntu",
                                        "architecture" : "x86_64",
                                        "version" : "16.04"
                                }
                        },
                        "active" : true,
                        "currentOpTime" : "2023-07-27T10:15:35.575-07:00",
                        "effectiveUsers" : [
                                {
                                        "user" : "__system",
                                        "db" : "local"
                                }
                        ],
                        "opid" : 1905631997,
                        "secs_running" : NumberLong(6),
                        "microsecs_running" : NumberLong(6675354),
                        "op" : "command",
                        "ns" : "admin.$cmd",
                        "command" : {
                                "isMaster" : 1,
                                "maxAwaitTimeMS" : NumberLong(10000),
                                "topologyVersion" : {
                                        "processId" : ObjectId("64b7ff3ca7e87fe3e3fee978"),
                                        "counter" : NumberLong(5)
                                },
                                "internalClient" : {
                                        "minWireVersion" : 8,
                                        "maxWireVersion" : 9
                                },
                                "$db" : "admin"
                        },
                        "numYields" : 0,
                        "waitingForLatch" : {
                                "timestamp" : ISODate("2023-07-27T17:15:29Z"),
                                "captureName" : "FutureResolution"
                        },
                        "locks" : {

                        },
                        "waitingForLock" : false,
                        "lockStats" : {

                        },
                        "waitingForFlowControl" : false,
                        "flowControlStats" : {

                        }
                },

Regards
Syed

We have narrowed down the issue could be related to isMaster response timeout of maxAwaitTimeMS 10000. is there a way to change this parameter?

{"t":{"$date":"2023-08-17T02:50:32.464-07:00"},"s":"D2", "c":"COMMAND",  "id":21965,   "ctx":"conn40","msg":"About to run the command","attr":{"db":"admin","commandArgs":{"isMaster":1,"maxAwaitTimeMS":10000,"topologyVersion":{"processId":{"$oid":"64d4e48e6472f9ade56a1f31"},"counter":3},"internalClient":{"minWireVersion":9,"maxWireVersion":9},"$db":"admin"}}}
{"t":{"$date":"2023-08-17T02:50:32.465-07:00"},"s":"D3", "c":"FTDC",     "id":23904,   "ctx":"conn40","msg":"Using maxAwaitTimeMS for awaitable isMaster protocol."}
{"t":{"$date":"2023-08-17T02:50:32.465-07:00"},"s":"D1", "c":"REPL",     "id":21342,   "ctx":"conn40","msg":"Waiting for an isMaster response from a topology change or until deadline","attr":{"deadline":{"$date":"2023-08-17T09:50:42.465Z"},"currentTopologyVersionCounter":3}}
{"t":{"$date":"2023-08-17T02:50:42.468-07:00"},"s":"D3", "c":"-",        "id":4892201, "ctx":"conn40","msg":"Internal assertion","attr":{"error":{"code":262,"codeName":"ExceededTimeLimit","errmsg":"operation exceeded time limit"},"location":"{fileName:\"src/mongo/util/interruptible.h\", line:398, functionName:\"operator()\"}"}}