Skip to content

Commit

Permalink
Fix call to summarizeJob for api executions listing
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Feb 14, 2011
1 parent 26d1aaf commit 698785b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -594,7 +594,7 @@ class ExecutionController {
description(e.scheduledExecution.description)
}
}
description(executionService.summarizeJob(e.scheduledExecution, e))
description(ExecutionService.summarizeJob(e.scheduledExecution, e))
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion rundeckapp/grails-app/services/ExecutionService.groovy
Expand Up @@ -1069,7 +1069,7 @@ class ExecutionService implements ApplicationContextAware, Executor{
notificationService.triggerJobNotification(props.status == 'true' ? 'success' : 'failure', schedId, [execution: execution,nodestatus:[succeeded:sucCount,failed:failedCount,total:totalCount]])
}
}
def summarizeJob(ScheduledExecution job=null,Execution exec){
public static String summarizeJob(ScheduledExecution job=null,Execution exec){
// if(job){
// return job.groupPath?job.generateFullName():job.jobName
// }else{
Expand Down

0 comments on commit 698785b

Please sign in to comment.