-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Neo4jError: Ignored either because of an error or RESET #1080
Comments
Hey, any news on that? Thanks! |
Hi, would it be possible to get some insight on this? Thanks! |
Hi @gchicoye, do you have some logs or an minimal example? You can enable the logs by creating the driver with: const driver = neo4j.driver(<your url>, <your credentials>, {
...// other configurations,
logging: neo4j.logging.console("debug")
}) See: |
I get a TS error here...
|
Hi, any idea on this? |
Can you try to ignore the ts definition? const driver = neo4j.driver(<your url>, <your credentials>, {
...// other configurations,
// @ts-ignore
logging: neo4j.logging.console("debug")
}) I will investigate the ts type error. |
Hey, Done !
I get the following logs from debug (the
However, I usually cannot get the commit to perform, and so nothing happens, my timeout function is executed (nothings happens for minutes otherwise) and container restarts... |
You should resolve the promise returned by the tx.run. You can do by: if (dbEntry.action === 'UPSERT') await upsertDbEntry(dbEntry, txc);
if (dbEntry.action === 'DELETE') await deleteDbEntry(dbEntry, txc); |
Bug Report
While updating my Neo4J database (community edition) with the following script
I get the following uncatchable error.
On my server, we get the following log
My Environment
Javascript Runtime Version: 18.16.0
Driver Version: 5.7.0
Neo4j Version and Edition: docker Neo4j:latest - 5.6 Community edition
Operating System: Debian 10 for Server, node:lts-alpine for Client (18.16.0)
The text was updated successfully, but these errors were encountered: