The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can't get issue key in context provider via jiraHelper

zhen zhang
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 7, 2015

Hi Everyone,
I am debugging one customized plugin, which was worked fine in JIRA 5.1.3, but not work in JIRA 6.4.1. The piece of code is below. the method-1 always return null, method-2 sometimes return correct issue key, sometimes return null. Does anyone have idea on this issue? thanks in advance!

Method -1:
String issueKey = jiraHelper.getRequest().getParameter("key");  //works fine for JIRA 5.1.3, but not ok for 6.4.1 sad

Method-2:
Map map = jiraHelper.getContextParams(); 
IssueImpl issueImpl = (IssueImpl)map.get("issue");
String issueKey = issueImpl.getKey(); //sometimes getKey() return null.

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
zhen zhang
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 21, 2015

it seems that method-2 's behavior is normal, I add exception handling solve this problem.

0 votes
zhen zhang
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 7, 2015

Can anyone give me suggestions about this ticket?  Thanks in advance!