Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove legacy stuff for automatically naming a job based on now inval…
…id domain properties. [#54 state:resolved]
  • Loading branch information
gschueler committed Oct 27, 2010
1 parent d3be6d0 commit b436026
Showing 1 changed file with 0 additions and 14 deletions.
Expand Up @@ -523,20 +523,6 @@ class ScheduledExecutionController {
scheduledExecution.adhocLocalString=null
scheduledExecution.adhocFilepath=null

if(!scheduledExecution.jobName){
//TODO: finalize format
if(scheduledExecution.name){
scheduledExecution.jobName=scheduledExecution.name+" - "+scheduledExecution.command+" Job"
} else if(scheduledExecution.command){
scheduledExecution.jobName=scheduledExecution.command+" Job"
}else if(scheduledExecution.adhocRemoteString){
scheduledExecution.jobName="Remote Script Job"
}else if(scheduledExecution.adhocLocalString){
scheduledExecution.jobName="Inline Script Job"
}else if(scheduledExecution.adhocFilepath){
scheduledExecution.jobName="Remote Script File Job"
}
}
if(!scheduledExecution.validate()){
failed=true
}
Expand Down

0 comments on commit b436026

Please sign in to comment.