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.
If you have an instance of jira and are running Adaptavist, and you have written a script that just keeps running.
How do you kill that adaptavist script?
If you have any logs in the script that you want to kill then I have some workaround for you.
You can find the process name in the atlassian-jira.log file, in my case it was like
2022-11-17 16:30:50,229+0100 http-nio-8080-exec-40494 INFO ....
The "http-nio-8080-exec-40494" is the thread name. So, now you can do something like this in the Console:
Thread.getThreads().each {
if (it.name == "http-nio-8080-exec-40456") {
it.stop()
}
}
It should stop the script.
Hi Colin,
Currently you would have to restart Jira to kill a ScriptRunner script. There is a feature request for this here you can vote/follow: https://productsupport.adaptavist.com/browse/SRJIRA-3685
Kind regards,
Katy
Adaptavist Product Support
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.
Not really enough detail for me to offer a detailed answer, but as a generic one...
if you are running one of our products either for you or one of your customers, and hitting a problem then I would always encourage you to raise a ticket with our support team.
See: https://productsupport.adaptavist.com/servicedesk/customer/portals
We've invested a lot in support the last few years, and have a lot of people that can help. We give better support to our solution partners (and Glintech is one). I see you are in Australia - we have people in a near timezone that can help as well.
Get the best out of what you have paid for and test our support team out!
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.