Skip to content

Commit

Permalink
Attempt to fix TeamCity build
Browse files Browse the repository at this point in the history
- Increase memory for the container

(cherry picked from commit 1c70a9a)
  • Loading branch information
AzuObs committed Apr 22, 2022
1 parent 639831f commit 5671b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-utils/src/main/java/apoc/util/TestContainerUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private static Neo4jContainerExtension createNeo4jContainer(String dockerImage,
.withFileSystemBind(canonicalPath, "/var/lib/neo4j/import") // map the "target/import" dir as the Neo4j's import dir
.withEnv("NEO4J_ACCEPT_LICENSE_AGREEMENT", "yes")
// .withDebugger() // uncomment this line for remote debbuging inside docker's neo4j instance
.withCreateContainerCmdModifier(cmd -> cmd.withMemory(1024 * 1024 * 1024l))
.withCreateContainerCmdModifier(cmd -> cmd.withMemory(2024 * 1024 * 1024l))

// set uid if possible - export tests do write to "/import"
.withCreateContainerCmdModifier(cmd -> {
Expand Down

0 comments on commit 5671b0c

Please sign in to comment.