Race condition, also called mid-air collision, that occurs when two senders read the same state, make independent decisions, and both write back at roughly the same time — the later write silently clobbers the earlier. Addressed via optimistic locking with a version parameter on change requests.