Skip to content
This repository was archived by the owner on Sep 3, 2021. It is now read-only.

Commit 2db1272

Browse files
committed
always set upgrade store flag
1 parent 9b15a59 commit 2db1272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/start-neo4j.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ if [ ! -d "neo4j/data/databases/graph.db" ]; then
66
echo "Neo4j not installed correctly, run ./scripts/install_neo4j"
77
exit 1
88
else
9-
[ "$NEO4J_VERSION" == "3.4.0" ] && FLAGS="dbms.allow_upgrade=true" || FLAGS=""
10-
echo "$FLAGS" >> ./neo4j/conf/neo4j.conf
9+
#[ "$NEO4J_VERSION" == "3.4.0" ] && FLAGS="dbms.allow_upgrade=true" || FLAGS=""
10+
echo "dbms.allow_upgrade=true" >> ./neo4j/conf/neo4j.conf
1111
# Set initial and max heap to workaround JVM in docker issues
1212
dbms_memory_heap_initial_size="2048m" dbms_memory_heap_max_size="2048m" ./neo4j/bin/neo4j start
1313
echo "Waiting up to 2 minutes for neo4j bolt port ($BOLT_PORT)"

0 commit comments

Comments
 (0)