Data race condition
The value of the shared data will be determined by the interleaving of thread execution. Thread shared data is accessed without holding an appropriate lock, possibly causing a race condition
/src/mongo/db/repl/tenant_migration_recipient_service.cpp:1410: MISSING_LOCK 150889 Accessing "this->_oplogFetcherClient" without holding lock "mongo::repl::TenantMigrationRecipientService::Instance._mutex". Elsewhere, "mongo::repl::TenantMigrationRecipientService::Instance._oplogFetcherClient" is written to with "Instance._mutex" held 2 out of 2 times.