Note
We've packed up and moved from Confluence to Discourse to bring you a better, more interactive space. Out of courtesy we didn't migrate your user account so - you will have to signup again
The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
Hi,
I am trying to use Bulk Connects to sync a user story and its sub tasks from Jira Cloud to Azure DevOps, my csv file as below
TES-20,80609 (user story - user story)
TES-23,80610 (sub-task - task)
Problem is that sub-task TES-23 is synced with a new created task, not 80610 as expected in csv file.
I think it is caused by this script below, I am using it to sync sub-tasks (https://docs.idalko.com/exalate/display/ED/How+to+synchronize+tasks+and+subtasks)
Jira Outgoing sync
// Automatically sync all subtasks when syncing parent task
httpClient.
get
(
"/rest/api/3/issue/"
+issueKey.id).fields.subtasks?.
collect
{
def
subTaskKey =
new
com.exalate.basic.domain.BasicIssueKey(it.id, it.key)
syncHelper.exalate(subTaskKey)
}
Do you have any suggestion to make it work as expected in this case?
Thanks,
Patrick