Convert docx to pdf takes more time when footnotes

We are using aspose v23 and facing issues when converting word to pdf.
Word to pdf takes more time when footnotes are there in the word document. It takes 5 minutes to convert a word file (1.5mb) docx to pdf. this happens only when it has footnotes.

Please help us to resolve

@vigneshrao Could you please attach the problematic document here for testing? We will check it on our side and provide you more information.

sample.docx (15.5 KB)

please try converting this docx file to pdf using aspose word. It takes more time.
Approximately greater than 5 minutes

@vigneshrao I have tested conversion on my side and it takes about one second to convert the attached document to PDF using the latest 23.9 version of Aspose.Words. I have tested with both .NET and Java versions of Aspose.Words. Here is code I used for testing:

Document doc = new Document(@"C:\Temp\in.docx");
doc.Save(@"C:\Temp\out.pdf");