We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d0fc4 commit ba15751Copy full SHA for ba15751
test/framework/src/main/java/org/elasticsearch/bootstrap/TestScopeResolver.java
@@ -36,6 +36,7 @@ PolicyManager.PolicyScope getScope(Class<?> callerClass) {
36
var location = callerCodeSource.getLocation().toString();
37
var scope = scopeMap.get(location);
38
if (scope == null) {
39
+ // Special cases for libraries not handled by our automatically-generated scopeMap
40
if (callerClass.getPackageName().startsWith("org.bouncycastle")) {
41
scope = new PolicyManager.PolicyScope(PLUGIN, "security", ALL_UNNAMED);
42
logger.debug("Assuming bouncycastle is part of the security plugin");
0 commit comments