1
0
Fork 0

use --log.force-direct true when executing tests

This commit is contained in:
jsteemann 2016-06-15 19:10:07 +02:00
parent 766f79baa3
commit f5c2a71534
1 changed files with 4 additions and 0 deletions

View File

@ -1359,6 +1359,10 @@ function startArango(protocol, options, addArgs, name, rootDir, isAgency) {
args["log.level"] = 'error';
}
// flush log messages directly and not asynchronously
// (helps debugging)
args["log.force-direct"] = 'true';
if (protocol === "ssl") {
args["ssl.keyfile"] = fs.join("UnitTests", "server.pem");
}