LUCENE-9576: give solr back its getFileStoreAttributes permission

Solr apparently needs this for its IndexFetcher.
This commit is contained in:
Robert Muir 2020-10-18 12:30:47 -04:00
parent e9ff918dbd
commit 4c42cbc5c9
No known key found for this signature in database
GPG Key ID: 817AE1DD322D7ECA
2 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,8 @@ grant {
permission java.lang.RuntimePermission "getStackTrace";
// needed for mock filesystems in tests
permission java.lang.RuntimePermission "fileSystemProvider";
// needed by IndexFetcher
permission java.lang.RuntimePermission "getFileStoreAttributes";
// analyzers/uima: needed by lucene expressions' JavascriptCompiler
permission java.lang.RuntimePermission "createClassLoader";
// needed to test unmap hack on platforms that support it

View File

@ -73,6 +73,8 @@ grant {
permission java.lang.RuntimePermission "getStackTrace";
// needed for mock filesystems in tests
permission java.lang.RuntimePermission "fileSystemProvider";
// needed by IndexFetcher
permission java.lang.RuntimePermission "getFileStoreAttributes";
// analyzers/uima: needed by lucene expressions' JavascriptCompiler
permission java.lang.RuntimePermission "createClassLoader";
// needed to test unmap hack on platforms that support it