mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of github.com:arangodb/arangodb into devel
This commit is contained in:
commit
c69696bc85
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue