replied on January 10, 2020
It sounds like another user is modifying the document between the time that you begin extracting text and the time that the client tries to save the text data to the server. The server detects that you are working with an old version, and to prevent data loss it throws this error. The case it's worried about is if that other user also updated the page text you would overwrite their text without ever seeing it. Note though that the check is not that fine-grained, the error is raised when you attempt to lock the document for writing, before the server knows what kinds of changes you are going to make. When you get this error, if you refresh the listing you can check the last modified property of that document to see whose modifications are causing you to get this error.