mirror of https://gitee.com/bigwinds/arangodb
Fix comparison of argument list.
This commit is contained in:
parent
d0a20e8c5e
commit
6e014ea204
|
@ -287,7 +287,7 @@ function startInstance (protocol, options, addArgs, testname) {
|
|||
}
|
||||
|
||||
var valgrindHosts = '';
|
||||
if (typeof(options.valgrindHosts) !== undefined) {
|
||||
if (typeof(options.valgrindHosts) !== 'object') {
|
||||
if (options.valgrindHosts.Coordinator === true) {
|
||||
valgrindHosts += 'Coordinator';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue