Hi all!
I use Neo4j in my Spring Boot application. For testing, I run Neo4j runs from the official neo4j:latest
Docker image, with the port 7687
for Bolt.
Locally, when I run unit & integration tests, everything is fine. All tests finish under 4 minutes.
However, when I run tests on GitHub Actions, Neo4j seems to hang for looooong times, then eventually the tests either succeed, or not. Yes, I know, it may be GitHub Actions.
Could you have a look at the trace logs I made? The last useful entry seems to come from org.neo4j.ogm.context.EntityGraphMapper
, and then it hangs for minutes/hours.
My pom.xml
is the following: pom.xml.txt (5.6 KB)
The partial trace logs are here: trace.log.txt (2.6 MB)
Thank you for your help.