Reputation: 153
I created a cronjob in hybris 6.1. In HMC 'Start CronJob now' button is there to start cron job but 'Abort CronJob' button is not showing.What to do ????
Upvotes: 0
Views: 560
Reputation: 20065
All jobs are not abortable. To be abortable a job must implement the isAbortable
method and return true
.
Example :
@Override
public boolean isAbortable()
{
return true;
}
Upvotes: 1