Skip to content

Commit

Permalink
Fix (temporarily) what is run and when
Browse files Browse the repository at this point in the history
  • Loading branch information
k4t3r1n4 committed Oct 29, 2014
1 parent 9d7e876 commit 39010e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bencherl
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ rbm()
n=`echo $NUMBER_OF_SLAVE_NODES | tr "," "\n" | tail -n 1`
IFS=$NEW_IFS

if [[ ( $NUMBER_OF_NUMBER_OF_SCHEDULERS -gt 1 ) || ( $NUMBER_OF_NUMBER_OF_SLAVE_NODES -eq 1 ) || ( $n -lt $NUMBER_OF_NUMBER_OF_SLAVE_NODES ) ]]; then
if [[ ( $NUMBER_OF_NUMBER_OF_SCHEDULERS -gt 1 ) || ( $NUMBER_OF_NUMBER_OF_SLAVE_NODES -eq 1 ) ]]; then
if [ "$n" -gt "$NSLAVE_NODES" ]; then
n=$NSLAVE_NODES
fi
Expand All @@ -165,7 +165,7 @@ rbm()
s=`echo $NUMBER_OF_SCHEDULERS | tr "," "\n" | tail -n 1`
IFS=$NEW_IFS

if [[ ( $NUMBER_OF_NUMBER_OF_SLAVE_NODES -gt 1 ) || ( $n -ge $NUMBER_OF_NUMBER_OF_SLAVE_NODES ) ]]; then
if [[ ( $NUMBER_OF_NUMBER_OF_SLAVE_NODES -gt 1 ) ]]; then
for n in $NUMBER_OF_SLAVE_NODES; do
if [ "$n" -gt "$NSLAVE_NODES" ]; then
continue
Expand Down

0 comments on commit 39010e4

Please sign in to comment.