Skip to content

Instantly share code, notes, and snippets.

@victorabraham
Created September 17, 2021 04:37
Show Gist options
  • Save victorabraham/45f02d645a09a5f94ec158632daf68a4 to your computer and use it in GitHub Desktop.
Save victorabraham/45f02d645a09a5f94ec158632daf68a4 to your computer and use it in GitHub Desktop.
for(CronTrigger cTrigger : [SELECT Id, CronJobDetail.Name FROM CronTrigger WHERE CronJobDetail.Name like 'TrackerJob%']){
//Try catch to ignore any exceptions to abort jobs
try{
system.abortJob(cTrigger.Id);
}
catch (exception e) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment