Hi,
I'm using ScriptRunner for Jira for server.
I ran a script from the Script Console to send out emails, and it ran into a loop. How do I stop the job from running? There is no cancel button in the Script Console.
Help appreciated!
Regards,
Marianne
I figured it out. The following works
PluginAccessor pluginAccessor = ComponentAccessor.getPluginAccessor()
Class teamManagerClass = pluginAccessor.getClassLoader().findClass("com.tempoplugin.team.api.TeamManager")
TeamManager teamManager = (TeamManager)ComponentAccessor.getOSGiComponentInstanceOfType(teamManagerClass)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.