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
I can't seem to get the Priority field to update when it changes on either the SN or the ZD side.
I have tried
def priorityMapping = [
// remote side priority <-> local side priority
"Critical" : "Urgent",
"Important" : "High",
"Normal" : "Normal",
"Informational" : "Low"
]
def priorityName = priorityMapping[replica.priority?.name] ?: "Normal" // set default priority in case the proper urgency could not be found
issue.priority = nodeHelper.getPriority("Normal") //priorityName)
*/
Along with many other iterations.
Any help would be much appreciated
Champ