[
https://issues.apache.org/jira/browse/CASSANDRA-5072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Aleksey Yeschenko updated CASSANDRA-5072:
-----------------------------------------
Attachment: 5072.txt
> Bug in creating EnumSet in SimpleAuthorizer example
> ---------------------------------------------------
>
> Key: CASSANDRA-5072
> URL: https://issues.apache.org/jira/browse/CASSANDRA-5072
> Project: Cassandra
> Issue Type: Bug
> Components: Core
> Affects Versions: 1.2.0 beta 3
> Reporter: John Sanda
> Assignee: Aleksey Yeschenko
> Priority: Minor
> Labels: authentication
> Attachments: 5072.txt
>
>
> In SimpleAuthorizer around line 47 we have,
> EnumSet<Permission> authorized = EnumSet.copyOf(Permission.NONE);
> This results in an IllegalArgumentException since Permission.NONE is an empty
> set. I think it should be changed to,
> EnumSet<Permission> authorized = EnumSet.noneOf(Permission.class);
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira