Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
Adapt tyre-kicking
Browse files Browse the repository at this point in the history
  • Loading branch information
sherfert committed Oct 10, 2019
1 parent b0b5cd7 commit b814468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tyrekicking.sh
Expand Up @@ -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!"
Expand Down

0 comments on commit b814468

Please sign in to comment.