You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/09/11 04:12:36 UTC

[isis] branch master updated: ISIS-2870: fix for LibraryPreloadingService to actually pre-load ruby

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 1625e71  ISIS-2870: fix for LibraryPreloadingService to actually pre-load ruby
1625e71 is described below

commit 1625e716829e370a94e81e2258f2271fb2182dc6
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Sep 11 06:12:27 2021 +0200

    ISIS-2870: fix for LibraryPreloadingService to actually pre-load ruby
---
 .../src/main/java/demoapp/dom/_infra/LibraryPreloadingService.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/demo/domain/src/main/java/demoapp/dom/_infra/LibraryPreloadingService.java b/examples/demo/domain/src/main/java/demoapp/dom/_infra/LibraryPreloadingService.java
index f5246be..db7ffda 100644
--- a/examples/demo/domain/src/main/java/demoapp/dom/_infra/LibraryPreloadingService.java
+++ b/examples/demo/domain/src/main/java/demoapp/dom/_infra/LibraryPreloadingService.java
@@ -36,7 +36,7 @@ public class LibraryPreloadingService {
     @PostConstruct
     public void preloadLibraries() {
         val tasks = _ConcurrentTaskList.named("LibraryPreloading")
-        .addRunnable("Preload JRuby for AsciiDoc", ()-> AsciiDoc.valueOfAdoc("Dummy"));
+        .addRunnable("Preload JRuby for AsciiDoc", ()->AsciiDoc.valueOfAdoc("Dummy").asHtml());
 
         tasks.submit(_ConcurrentContext.forkJoin());
     }