Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
change neo4j docker version
Browse files Browse the repository at this point in the history
  • Loading branch information
Motti Bechhofer committed May 16, 2024
1 parent 9caa4ed commit df34202
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/daily-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
- 27017:27017

neo4j:
image: neo4j:4.2.3
image: neo4j:4.4.34
ports:
- 7474:7474
- 11011:7687
env:
NEO4J_AUTH: neo4j/test
NEO4J_AUTH: neo4j/your_password


steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
- 27017:27017

neo4j:
image: neo4j:4.2.3
image: neo4j:4.4.34
ports:
- 7474:7474
- 11011:7687
env:
NEO4J_AUTH: neo4j/test
NEO4J_AUTH: neo4j/your_password

steps:

Expand Down
4 changes: 2 additions & 2 deletions packages/instrumentation-neo4j/test/neo4j.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ReadableSpan } from '@opentelemetry/sdk-trace-base';
* Tests require neo4j to run, and expose bolt port of 11011
*
* Use this command to run the required neo4j using docker:
* docker run --name testneo4j -p7474:7474 -p11011:7687 -d --env NEO4J_AUTH=neo4j/test neo4j:4.2.3
* docker run --name testneo4j -p7474:7474 -p11011:7687 -d --env NEO4J_AUTH=neo4j/test neo4j:4.4.34
* */

describe('neo4j instrumentation', function () {
Expand Down Expand Up @@ -464,7 +464,7 @@ describe('neo4j instrumentation', function () {

before(() => {
if (shouldCheck) {
routingDriver = neo4j.driver('neo4j://localhost:11011', neo4j.auth.basic('neo4j', 'test'));
routingDriver = neo4j.driver('neo4j://localhost:11011', neo4j.auth.basic('neo4j', 'your_password'));
}
});

Expand Down

0 comments on commit df34202

Please sign in to comment.