1
0
Fork 0

Merge branch 'devel' of github.com:arangodb/arangodb into devel

This commit is contained in:
Andreas Streichardt 2016-02-24 17:01:12 +01:00
commit c69696bc85
2 changed files with 6 additions and 1 deletions

View File

@ -291,7 +291,9 @@ void LogAppenderFile::reopenLog() {
int old = std::atomic_exchange(&_fd, fd);
TRI_CLOSE(old);
if (old > STDERR_FILENO) {
TRI_CLOSE(old);
}
}
void LogAppenderFile::closeLog() {

View File

@ -156,6 +156,9 @@ testServer() {
done
}
for p in `seq 8629 $PORTTOPDB` ; do
testServer $p
done
for p in `seq 8530 $PORTTOPCO` ; do
testServer $p
done