You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Damon A. Brown (JIRA)" <ji...@apache.org> on 2013/02/09 19:01:12 UTC

[jira] [Created] (ACCUMULO-1057) ChangeSecret fails to change password

Damon A. Brown created ACCUMULO-1057:
----------------------------------------

             Summary: ChangeSecret fails to change password
                 Key: ACCUMULO-1057
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-1057
             Project: Accumulo
          Issue Type: Bug
          Components: client
    Affects Versions: 1.5.0
            Reporter: Damon A. Brown
            Assignee: Billie Rinaldi
         Attachments: ChangeSecret.patch

ChangeSecret fails to change password.

The argsList uses Arrays.asList(...), which returns an immutable array.  Adding to the array produces an exception:

Thread "org.apache.accumulo.server.util.ChangeSecret" died null
java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:601)
	at org.apache.accumulo.start.Main$1.run(Main.java:97)
	at java.lang.Thread.run(Thread.java:722)
Caused by: java.lang.UnsupportedOperationException
	at java.util.AbstractList.add(AbstractList.java:148)
	at java.util.AbstractList.add(AbstractList.java:108)
	at org.apache.accumulo.server.util.ChangeSecret.main(ChangeSecret.java:55)
	... 6 more


--
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