[
https://issues.apache.org/jira/browse/CASSANDRA-15494?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17035637#comment-17035637
]
Gus Heck commented on CASSANDRA-15494:
--------------------------------------
Pull request created.
> Support additional Jar url scheme
> ---------------------------------
>
> Key: CASSANDRA-15494
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15494
> Project: Cassandra
> Issue Type: Improvement
> Components: Local/Other
> Reporter: Gus Heck
> Assignee: Gus Heck
> Priority: Normal
> Labels: pull-request-available
> Attachments: CASSANDRA-15494.patch, CASSANDRA-15494.patch
>
> Time Spent: 10m
> Remaining Estimate: 0h
>
> This code in ThreadAwareSecurityManager causes issues for embedded cassandra
> launched from a one-jar or uno-jar.
> {code:java}
> switch (codesource.getLocation().getProtocol())
> {
> case "file":
> // All JARs and class files reside on the file system
> - we can safely
> // assume that these classes are "good".
> return true;
> }
> {code}
> Attaching patch to support protocol of 'jar' as well. AFAICT this won't
> introduce any added risk for UDF's discussed in CASSANDRA-9402 since a jar
> (or one/uno jar) must also be on the filesystem.
> New code would be (in 2 places):
> {code:java}
> switch (codesource.getLocation().getProtocol())
> {
> case "jar":
> case "file":
> // All JARs and class files reside on the file system
> - we can safely
> // assume that these classes are "good".
> return true;
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]