NullPointerException when Selecting the User from the User Picker

Still need help?

The Atlassian Community is here for you.

Ask the community

Symptoms

Selecting users from the user picker throws a NullPointerException:


ERROR [500ErrorPage] Exception caught in 500 page java.lang.NullPointerException
java.lang.RuntimeException: java.lang.NullPointerException
  at com.atlassian.jira.web.action.admin.user.UserPickerBrowser.getBrowsableItems(UserPickerBrowser.java:112)
  at com.atlassian.jira.web.action.admin.user.UserPickerBrowser.doExecute(UserPickerBrowser.java:62)

Cause

There are some users with null usernames in the database.

Resolution

Delete those users with NULL username in database:


DELETE FROM userbase WHERE id=<user_id>;

Make sure to take a sql dump or XML backup before making any changes to the database.


Last modified on Mar 30, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.