diff --git a/src/main/java/com/axonivy/market/service/impl/ProductServiceImpl.java b/src/main/java/com/axonivy/market/service/impl/ProductServiceImpl.java index 473c780e3..b6d728c7b 100644 --- a/src/main/java/com/axonivy/market/service/impl/ProductServiceImpl.java +++ b/src/main/java/com/axonivy/market/service/impl/ProductServiceImpl.java @@ -277,7 +277,8 @@ private void updateProductFromReleaseTags(Product product) { return f.get(); } catch (InterruptedException | ExecutionException e) { Thread.currentThread().interrupt(); - throw new RuntimeException("Thread was interrupted", e); + log.error("Get readme and product json contents failed", e); + return null; } }).toList(); product.setReadmeProductContents(readmeProductContents);