qichengu / jodconverter

Automatically exported from code.google.com/p/jodconverter
0 stars 0 forks source link

Restart due to timeout causes next conversion to be cancelled #100

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
If a conversion is submitted just after the previous one has failed due to a 
timeout, it is likely to be cancelled by the PooledOfficeManager:

# PooledOfficeManager.java:52
                logger.warning("connection lost unexpectedly; attempting restart");
                if (currentTask != null) {
                    currentTask.cancel(true);
                }

The attached unit test allows to reproduce the problem.

Original issue reported on code.google.com by mguille...@yahoo.fr on 2 Dec 2011 at 11:12

Attachments:

GoogleCodeExporter commented 8 years ago
I'm seeing similar behavior as well.

Original comment by MaryAub...@gmail.com on 19 Apr 2012 at 5:29