Hey,
I have a scripted mail handler that creates issueObject and then creates an issue based on that issueObject. The problem is that at the first log it does prints the right assignee for the issueOBbject but the second log prints null. I really can't figure out what's going out wrong since it does creates the issue correctly but with out assignee.
The relevant code:
issueObject=issueFactory.getIsssue()
.... // Assign values to the issue object
issueObject.setAssignee(assignee)
log.warn(issueObject.getAssignee) // prints the right assignee
issue=messageHandlerContext.createIssue(user,issueObject) // Create the issue- works fine
log.warn(issue.getAssignee) // prints null
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.