Skip to content

Commit

Permalink
Temporarily work around Infinispan SASL issues #2975
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Aug 3, 2021
1 parent 1a08765 commit 208f018
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import io.quarkus.deployment.builditem.nativeimage.NativeImageSecurityProviderBuildItem;

class InfinispanProcessor {

Expand All @@ -27,4 +28,10 @@ class InfinispanProcessor {
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
}

// TODO: Remove this - https://github.com/apache/camel-quarkus/issues/2975
@BuildStep
NativeImageSecurityProviderBuildItem saslSecurityProvider() {
return new NativeImageSecurityProviderBuildItem("com.sun.security.sasl.Provider");
}
}

0 comments on commit 208f018

Please sign in to comment.