diff --git a/dossierfacile-common-library/src/main/java/fr/dossierfacile/common/service/DocumentHelperServiceImpl.java b/dossierfacile-common-library/src/main/java/fr/dossierfacile/common/service/DocumentHelperServiceImpl.java index 2ff4dd222..f4beac586 100644 --- a/dossierfacile-common-library/src/main/java/fr/dossierfacile/common/service/DocumentHelperServiceImpl.java +++ b/dossierfacile-common-library/src/main/java/fr/dossierfacile/common/service/DocumentHelperServiceImpl.java @@ -109,6 +109,8 @@ public InputStream convertHeicToJpg(InputStream heicInputStream) throws IOExcept throw new IOException("Erreur lors de la conversion HEIC en JPG avec ImageMagick."); } } catch (InterruptedException e) { + log.error("Interrupted exception", e); + Thread.currentThread().interrupt(); throw new RuntimeException(e); }