From b81446849d1aed998602f198c341c43241146e7e Mon Sep 17 00:00:00 2001 From: Satia Herfert Date: Thu, 10 Oct 2019 10:54:18 +0200 Subject: [PATCH] Adapt tyre-kicking --- tyrekicking.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tyrekicking.sh b/tyrekicking.sh index ae70eb92..1d7952e7 100644 --- a/tyrekicking.sh +++ b/tyrekicking.sh @@ -12,9 +12,9 @@ function prepare-bundle { function testscript { # first try with encryption off (4.X series), if that fails with encryption on (3.X series) - if cypher-shell/cypher-shell -u neo4j -p neo --encryption false "RETURN 1;"; then + if cypher-shell/cypher-shell -u neo4j -p neo "RETURN 1;"; then echo "$1 Success!" - elif cypher-shell/cypher-shell -a "bolt://localhost:7687" -u neo4j -p neo --encryption true "RETURN 1;"; then + elif cypher-shell/cypher-shell -a "bolt://localhost:7687" -u neo4j -p neo "RETURN 1;"; then echo "$1 Success!" else echo "$1 Failure!"