-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce log level when loading blacklist to INFO from ERROR (#1522)
* Update blacklisting such that no classes are blacklisted if the file is not found or can't be loaded Fixes #1515
- Loading branch information
Showing
3 changed files
with
27 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# Classes/Packages that aren't allowed to be loaded by UDFs. | ||
# if a class name ends with $ it will only match that class | ||
# otherwise it will match anything beginning with the string | ||
java.lang.Compiler$ | ||
java.lang.instrument | ||
java.lang.invoke | ||
java.lang.management | ||
java.lang.Process | ||
java.lang.ref | ||
java.lang.Shutdown | ||
java.lang.Thread | ||
java.util.concurrent | ||
java.util.jar | ||
java.util.zip | ||
# otherwise it will match anything beginning with the string. | ||
|
||
# For example, the following line would match only the java.lang.Compiler class. | ||
#java.lang.Compiler$ | ||
|
||
# The following line would match any classes that begin with java.lang.Compiler | ||
#java.lang.Compiler | ||
|
||
# The following line would match any classes that are in the java.lang.invoke package | ||
#java.lang.invoke | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters