Details
-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
None
-
3
-
9223372036854775807
Description
By default, when racer is run on a singe node it will create a second mount point at /mnt/lustre2 but it doesn't actually use that second mount point to do any operations. Although lustre/tests/racer/racer.sh will be invoked twice, once with argument /mnt/lustre/racer and once with /mnt/lustre2/racer, it uses $DIR when set rather than $1:
#!/bin/bash
#set -x
MAX_FILES=${MAX_FILES:-20}
DIR=${DIR:-$1}
DIR=${DIR:-"/mnt/lustre/racer"}
DURATION=${DURATION:-$((60*5))}
MDSCOUNT=${MDSCOUNT:-1}
...