Skip to content

Commit

Permalink
Merge pull request #15952 from jerboaa/artemis-graal-21.1-dev
Browse files Browse the repository at this point in the history
Runtime initialize RandomUtil in artemis-core extension
  • Loading branch information
gsmet authored Mar 23, 2021
2 parents d185939 + a4d7742 commit 8cf7c59
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public class ArtemisCoreProcessor {
@BuildStep
NativeImageConfigBuildItem config() {
return NativeImageConfigBuildItem.builder()
.addRuntimeInitializedClass("org.apache.activemq.artemis.api.core.ActiveMQBuffers").build();
.addRuntimeInitializedClass("org.apache.activemq.artemis.api.core.ActiveMQBuffers")
.addRuntimeInitializedClass("org.apache.activemq.artemis.utils.RandomUtil").build();
}

@BuildStep
Expand Down

0 comments on commit 8cf7c59

Please sign in to comment.