Skip to content

Commit 7650301

Browse files
committed
added neo4j+s as default protocol and tested it and it works!
1 parent ad837df commit 7650301

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

docs/modules/ROOT/pages/developer-guide/configuration.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ will look like this:
1919
"ssoProviders": [],
2020
"ssoDiscoveryUrl": "https://example.com",
2121
"standalone": false,
22-
"standaloneProtocol": "neo4j",
22+
"standaloneProtocol": "neo4j+s",
2323
"standaloneHost": "localhost",
2424
"standalonePort": "7687",
2525
"standaloneDatabase": "neo4j",
@@ -55,7 +55,7 @@ mode (false), or reader mode (true). The terms ``Reader mode'' and
5555
``Standalone mode'' are used interchangibly.
5656

5757
|standaloneProtocol |string |neo4j |When running in standalone mode, the
58-
protocol to used for the Neo4j driver. This shoudl be set to one of
58+
protocol to used for the Neo4j driver. This should be set to one of
5959
`neo4j`, `neo4j+s`, `neo4j+ssc`, `bolt`, `bolt+s`, or `bolt+ssc`.
6060

6161
|standaloneHost |string |localhost |When running in standalone mode, the

docs/modules/ROOT/pages/developer-guide/standalone-mode.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ docker run -it --rm -p 5005:5005 \
4242
-e ssoProviders=[] \
4343
-e ssoDiscoveryUrl="https://example.com" \
4444
-e standalone=true \
45-
-e standaloneProtocol="neo4j" \
45+
-e standaloneProtocol="neo4j+s" \
4646
-e standaloneHost="localhost" \
4747
-e standalonePort="7687" \
4848
-e standaloneDatabase="neo4j" \

docs/modules/ROOT/pages/developer-guide/state-management.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ standalone mode.
129129
"ssoEnabled": false,
130130
"ssoProviders": [],
131131
"ssoDiscoveryUrl": "https://example.com",
132-
"standaloneProtocol": "neo4j",
132+
"standaloneProtocol": "neo4j+s",
133133
"standaloneHost": "localhost",
134134
"standalonePort": "7687",
135135
"standaloneDatabase": "neo4j",

public/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"ssoProviders": [],
44
"ssoDiscoveryUrl": "https://example.com",
55
"standalone": false,
6-
"standaloneProtocol": "neo4j",
6+
"standaloneProtocol": "neo4j+s",
77
"standaloneHost": "localhost",
88
"standalonePort": "7687",
99
"standaloneDatabase": "neo4j",

src/application/ApplicationReducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const initialState = {
5858
draft: false,
5959
aboutModalOpen: false,
6060
connection: {
61-
protocol: 'neo4j',
61+
protocol: 'neo4j+s',
6262
url: DEFAULT_NEO4J_URL,
6363
port: '7687',
6464
database: '',

src/application/ApplicationThunks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ export const loadApplicationConfigThunk = () => async (dispatch: any, getState:
410410
ssoProviders: [],
411411
ssoDiscoveryUrl: 'http://example.com',
412412
standalone: false,
413-
standaloneProtocol: 'neo4j',
413+
standaloneProtocol: 'neo4j+s',
414414
standaloneHost: 'localhost',
415415
standalonePort: '7687',
416416
standaloneDatabase: 'neo4j',

0 commit comments

Comments
 (0)