171172173174175176177178179
void deactivateEscalationService(String scriptName) { EscalationProvider snapshot = this.runningServices.get(scriptName); if(snapshot == null) return; snapshot.cancel(); this.runningServices.remove(scriptName); } }