You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Dave Brosius (JIRA)" <ji...@apache.org> on 2012/12/16 02:10:13 UTC

[jira] [Updated] (CASSANDRA-5072) Bug in creating EnumSet in SimpleAuthorizer example

     [ https://issues.apache.org/jira/browse/CASSANDRA-5072?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dave Brosius updated CASSANDRA-5072:
------------------------------------

    Affects Version/s: 1.2.0 beta 3
    
> 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
>            Priority: Minor
>              Labels: authentication
>
> 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