Hi,
I am trying to create an issue from
AsynchronousJiraRestClientFactory
This is my code
AsynchronousJiraRestClientFactory factory = new AsynchronousJiraRestClientFactory();
JiraRestClient restClient = factory.create(jiraServerUri, auth);
IssueRestClient issueClient = restClient.getIssueClient();
IssueInputBuilder iib = new IssueInputBuilder();
iib.setProjectKey("PROD");
iib.setReporterName("xxxx");
iib.setSummary("test");
iib.setDescription("test describtion");
iib.setPriorityId(3L);
iib.setAssigneeName("xxx");
iib.setIssueTypeId(TASK);
IssueInput issue = iib.build();
BasicIssue issueObj = issueClient.createIssue(issue).claim();
issueId = issueObj.getKey();
Error:
RestClientException{statusCode=Optional.of(400), errorCollections=[ErrorCollection{status=400, errors={assignee=Issues must be assigned.}, errorMessages=[]}]}
Note: The assignee have permission to create an issue
this issue occurs recently (last 3 months). Before with the same set of code, created the issue.
Hello,
to compare two values you need to use == instead of =
<!-- @@Formula: Integer i = issue.get("customfield_10303").intValue ();
if (i==null) return null;
if (i==1) return "one";
if (i==2) return "two";
-->
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.
what data type is issue.get("customfiled_10303)? I bet is String.
Try adding quotes around "1" and "2".
Mike Hester BlackpearlPdm
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
data type? Just custom number field. quotes not working. <!-- @@Formula: if issue.get("customfield_10303").intValue = "1" return "one" -->
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<!-- @@Formula: if (issue.get("customfield_10303").intValue()) = "1" return "one" --> not working either <!-- @@Formula: (issue.get("customfield_10303").intValue()) --> works good, but i need "if" cascade
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.