mirror of https://gitee.com/bigwinds/arangodb
fixed wrong maximal journal size
This commit is contained in:
parent
2a843edda4
commit
c293ee72f7
|
@ -1622,6 +1622,7 @@ CERT_FILE := @srcdir@/UnitTests/server.pem
|
|||
################################################################################
|
||||
SHELL_COMMON = @srcdir@/js/common/tests/shell-document.js \
|
||||
@srcdir@/js/common/tests/shell-edge.js \
|
||||
@srcdir@/js/common/tests/shell-compactor.js \
|
||||
@srcdir@/js/common/tests/shell-collection.js \
|
||||
@srcdir@/js/common/tests/shell-simple-query.js \
|
||||
@srcdir@/js/common/tests/shell-index.js \
|
||||
|
@ -5552,7 +5553,6 @@ Doxygen/js/server/modules/%.c: @srcdir@/js/server/modules/%.js Doxygen/.setup-di
|
|||
@python @top_srcdir@/Doxygen/Scripts/js2doxy.py $< > $@
|
||||
|
||||
Doxygen/xml/%.md: Doxygen/xml/%.xml
|
||||
echo "CREATING XML FROM MD!!!"
|
||||
@python @top_srcdir@/Doxygen/Scripts/xml2md.py $< > $@
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -57,7 +57,7 @@ VOCDIR := /tmp/vocdir.$(PID)
|
|||
VOCPORT := $(shell printf "3%04d" `expr $(PID) % 10000`)
|
||||
VOCHOST := 127.0.0.1
|
||||
SERVER_START :=
|
||||
SERVER_OPT := --configuration none --javascript.startup-directory ./js --javascript.modules-path ./js/server/modules:./js/common/modules --javascript.action-directory ./js/actions/system --database.maximal-journal-size 1000000 --javascript.gc-interval 1 $(SERVER_START)
|
||||
SERVER_OPT := --configuration none --javascript.startup-directory ./js --javascript.modules-path ./js/server/modules:./js/common/modules --javascript.action-directory ./js/actions/system --database.maximal-journal-size 1048576 --javascript.gc-interval 1 $(SERVER_START)
|
||||
CLIENT_OPT := --javascript.startup-directory ./js --javascript.modules-path ./js/client/modules:./js/common/modules --no-colors --quiet
|
||||
STARTFILE := $(VOCDIR)/startup
|
||||
CURL := curl
|
||||
|
|
Loading…
Reference in New Issue