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
In our setup, we are attempting to use a transition to Exalate issues in JIRA (Server). When the "Exalate" workflow transition is selected, the user is prompted with a screen presenting two custom fields:
Exalate Project
Exalate Issue Type
Both are "Select List (Single Choice)" fields. Using these fields, the target project and issue type will be selected, and then those values will be used for creating the new issue during the first sync. However, when using the "Exalate Now" post function, the custom fields are passed without their assigned values (i.e. the
value
property is missing).The outgoing script is setup like so:
And the remote replica contains the custom fields but without the
value
property:Since the
id
/type
/description
properties are present, that indicates that the field name is being passed with the correct spelling. And there is a [JSU] validator in place to require a non-null value for both fields before the transition can occur.I originally suspected it might be a delay issue - where the values set during transition weren't yet available to the outgoing query. However, if I edit the issue and set the values before invoking the transition, they are still unavailable during the outgoing sync.
Additionally, I have implemented the following workaround:
Configure a trigger to exalate where:
In this scenario, the data is passed as expected. So it seems to be only during a transition that the
value
of the custom fields are getting omitted/popped.