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 authored and github-actions[bot] committed Aug 11, 2021
1 parent 761764d commit 5f46359
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 5f46359

Please sign in to comment.