You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I've upgraded my dev instance from 7.3.x to 7.4.x in prevision to upgrade the production instance. All seemed to work fine until i discover that some transitions don't work anymore.
It seems that the condition powered by JSU don't work anymore:
I can replace them with something that seems native, although i don't know if it really is. (before, i didn't know that i was using JSU).
(here it's with Administrators, but i bet you got the general idea)
Is there a procedure to upgrade without using JSU anymore ?
Is there a way to detect automatically everything that are powered by JSU ?
Does anyone have any advice regarding this upgrade ?
Regards,
Laurent
Thanks for your answer :)
Well the first step is a bit "boring" since i've like 150 activ workflows...
Is there a table in the DB concerning JSU ? I know that sometimes, plugins create their own table in the DB.
Maybe i can do step a) while searching in this specific table... Otherwise i hope that i'll find another solution than to go trough all the activ workflows...
If you have access to the DB and can run a SQL command, you could try this to identify which workflows have JSU functions in them:
select workflowname from jiraworkflows where DESCRIPTOR like '%.jsu.%';
That should give you a list of workflow names that contain the string ".jsu." You can modify the SQL to search for other things by changing what is in between the % % (SQL wildcards.)
Thank you very much Theodore ! It works like a charm !
When i see the solution, i realise that i've been a bit lazy on this.
I'm not accustomed to upgrade so i was a bit lost as for what i could do.
Anyway, thank you again. I'll remember this for every things that can be found in the DB.
Regards,
Laurent