Hi,
I am writing an event listener plugin for JIRA. I am facing an issue that it is executing multiple times for single event which I suspect is that old listener is not unregistered correctly. I uninstalled service and unregistered it from jira but even after that script is executing.
I have implemented destroy method in my class
@Override
public void destroy()
throws Exception
{
eventPublisher.unregister(this);
}
Is there any other way to do this? Please let me know how can I fix it.
Regards
Abhishek