Python 关闭与Neomodel的数据库连接

Python 关闭与Neomodel的数据库连接,python,neo4j,neomodel,Python,Neo4j,Neomodel,我正在使用lib,在文档中找不到任何东西可以正确地关闭与DB的连接。我是否错过了什么,或者是否有方法访问基础连接并关闭它 存在python程序时,打开的连接将生成以下错误: Failed to write data to connection Address(host='localhost', port=7687) (Address(host='127.0.0.1', port=7687)); ("0; 'Underlying socket connection gone (_ssl.c:226

我正在使用lib,在文档中找不到任何东西可以正确地关闭与DB的连接。我是否错过了什么,或者是否有方法访问基础连接并关闭它

存在python程序时,打开的连接将生成以下错误:

Failed to write data to connection Address(host='localhost', port=7687) (Address(host='127.0.0.1', port=7687)); ("0; 'Underlying socket connection gone (_ssl.c:2263)'")

Failed to write data to connection Address(host='localhost', port=7687) (Address(host='127.0.0.1', port=7687)); ("0; 'Underlying socket connection gone (_ssl.c:2263)'")

更新:发现与此问题相关的已注册错误

我一直在Docker和最新版本(3.5.11)中使用Neo4j,并且存在相同的问题。降级到3.4.15 Docker映像为我修复了此问题和一些其他问题(管道断裂),因此这似乎与正在使用的Neo4j版本有关?

我一直在与Docker和最新版本(3.5.11)一起使用Neo4j,并且有相同的问题。降级到3.4.15 Docker映像为我修复了这个问题和一些其他问题(管道断裂),所以这似乎与正在使用的Neo4j版本有关