Skip to content

Commit

Permalink
fix incorrect return
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Jun 3, 2011
1 parent a5ab88e commit 7b0217d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rundeckapp/grails-app/jobs/ExecutionJob.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class ExecutionJob implements InterruptableJob {
}
if(!execmap){
//failed to start
return false
return [success:false]
}

int killcount=0;
Expand Down

0 comments on commit 7b0217d

Please sign in to comment.