Skip to content

Commit 5ae6caf

Browse files
committed
upgraded to version 4.4
1 parent ace8d82 commit 5ae6caf

File tree

3 files changed

+34
-15
lines changed

3 files changed

+34
-15
lines changed

.github/workflows/full-test.yml

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ jobs:
3232

3333
services:
3434
neo4j:
35-
image: neo4j:4.3
35+
image: neo4j:4.4
3636
options: >-
37-
--health-cmd "wget http://localhost:7474 || exit 1"
38-
--health-start-period "30s"
37+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
38+
--health-start-period "60s"
39+
--health-interval "30s"
3940
--health-timeout "15s"
4041
--health-retries "5"
4142
ports:
@@ -46,9 +47,13 @@ jobs:
4647
NEO4JLABS_PLUGINS: '["apoc"]'
4748

4849
core1:
49-
image: neo4j:4.3-enterprise
50+
image: neo4j:4.4-enterprise
5051
options: >-
51-
--health-cmd "wget http://localhost:7475 || exit 1"
52+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
53+
--health-start-period "60s"
54+
--health-interval "30s"
55+
--health-timeout "15s"
56+
--health-retries "5"
5257
ports:
5358
- 7688:7688
5459
- 7475:7475
@@ -68,9 +73,13 @@ jobs:
6873
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7688
6974

7075
core2:
71-
image: neo4j:4.3-enterprise
76+
image: neo4j:4.4-enterprise
7277
options: >-
73-
--health-cmd "wget http://localhost:7476 || exit 1"
78+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
79+
--health-start-period "60s"
80+
--health-interval "30s"
81+
--health-timeout "15s"
82+
--health-retries "5"
7483
ports:
7584
- 7689:7689
7685
- 7476:7476
@@ -90,9 +99,13 @@ jobs:
9099
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7689
91100

92101
core3:
93-
image: neo4j:4.3-enterprise
102+
image: neo4j:4.4-enterprise
94103
options: >-
95-
--health-cmd "wget http://localhost:7477 || exit 1"
104+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
105+
--health-start-period "60s"
106+
--health-interval "30s"
107+
--health-timeout "15s"
108+
--health-retries "5"
96109
ports:
97110
- 7690:7690
98111
- 7477:7477
@@ -112,9 +125,13 @@ jobs:
112125
NEO4J_dbms_connector_bolt_listen__address: 0.0.0.0:7690
113126

114127
readreplica1:
115-
image: neo4j:4.3-enterprise
128+
image: neo4j:4.4-enterprise
116129
options: >-
117-
--health-cmd "wget http://localhost:7478 || exit 1"
130+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
131+
--health-start-period "60s"
132+
--health-interval "30s"
133+
--health-timeout "15s"
134+
--health-retries "5"
118135
ports:
119136
- 7691:7691
120137
- 7478:7478

.github/workflows/integration-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ jobs:
2727
- 7687:7687
2828
- 7474:7474
2929
options: >-
30-
--health-cmd "wget http://localhost:7474 || exit 1"
31-
--health-start-period "30s"
30+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
31+
--health-start-period "60s"
32+
--health-interval "30s"
3233
--health-timeout "15s"
3334
--health-retries "5"
3435

.github/workflows/testkit.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ jobs:
2626
- 7687:7687
2727
- 7474:7474
2828
options: >-
29-
--health-cmd "wget http://localhost:7474 || exit 1"
30-
--health-start-period "30s"
29+
--health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1"
30+
--health-start-period "60s"
31+
--health-interval "30s"
3132
--health-timeout "15s"
3233
--health-retries "5"
3334

0 commit comments

Comments
 (0)