Since the upgrade to JIRA 7 when trying to create a new issue this exception is displayed:
Exception occurred: java.lang.IllegalArgumentException: Multiple entries with same key: customfield_10402=com.atlassian.jira.rest.v2.issue.IssueBeanBuilder2$FieldData@3b7ab06a and customfield_10402=com.atlassian.jira.rest.v2.issue.IssueBeanBuilder2$FieldData@56583aab
Curiously
Any ideas on this?
Is that field a ranking type field?
No, its a rarely used customfield restricted to one project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, what type of field is it? This error looks like you've got more than one value for a single-select field. You might have to delete one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you're right, it's a single-select field. I'll have a look into this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It means that two values for customfield with id 10402 have the same id.
If you use server version you can try to get doubled customfield values with this SQL:
Select customfieldvalue.ID , customfieldvalue.CUSTOMFIELD from customfieldvalue group by customfieldvalue.ID , customfieldvalue.CUSTOMFIELD having COUNT(customfieldvalue.ID) > 1
I got similar troubles when inserted values into custom field via SQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Exactly. Never change a JIRA database with SQL (unless you *fully* understand what you're doing. Which most people don't)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.