Skip to content

Commit

Permalink
Handle null nodeRankOrderAscending [#495]
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Jan 10, 2012
1 parent 8ad3631 commit 2b9c4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rundeckapp/grails-app/services/ExecutionService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ class ExecutionService implements ApplicationContextAware, CommandInterpreter{
.threadCount(threadCount)
.keepgoing(keepgoing)
.nodeRankAttribute(execMap.nodeRankAttribute)
.nodeRankOrderAscending(execMap.nodeRankOrderAscending)
.nodeRankOrderAscending(execMap.nodeRankOrderAscending?true:false)
.build()
return item
}
Expand Down

0 comments on commit 2b9c4a1

Please sign in to comment.