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_access_blocker.h:140: MISSING_LOCK 148341 Accessing "this->_state" without holding lock "mongo::TenantMigrationRecipientAccessBlocker._mutex". Elsewhere, "mongo::TenantMigrationRecipientAccessBlocker._state" is written to with "TenantMigrationRecipientAccessBlocker._mutex" held 1 out of 1 times.