We’re self-hosting aspose/words-cloud:24.1 and getting this error back with two .docx files from this request.
{
"Error": {
"Message": "INS sync failed."
},
"RequestId": "4f66668305b34e01b97c68ba935e36ef"
}
We’re using the ruby client and setting two parameters in the request options:
The problematic file does indeed have revisions and tracked changes.
We used to run 23.9 prior to recently upgrading to 24.1. I tested the same request with the same files to an instance of 23.9 and the comparison succeeds. I also tested with an instance of 23.12 (the latest 23.x) and that also succeeds as well.
Unfortunately, I am not able to provide the example files because they contain private customer data. If it’s any help, I also discovered that deleting a “space” character from a specific paragraph makes the comparison succeed with 24.1. If I add that space back in by pressing the spacebar key, it fails again. So I don’t think it’s due to the textual content. I unzipped the file and observed the node of the apparent problem area and there doesn’t appear to be anything unusual:
<w:r w:rsidRPr="005F38ED">
<w:rPr>
<w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
<w:sz w:val="20"/>
</w:rPr>
<w:t>Text here of the supposed problematic area</w:t>
</w:r>
Let me know if there’s anything else about the files I can describe that could be helpful.