Closed MrDHat closed 6 years ago
I changed the implementation a bit and changed
row, _, err := rows.NextNeo()
to
var row interface{}
row, _, err = rows.NextNeo()
and it has stopped throwing that error. Any idea why?
Anything here? I am facing this issue in production now even after the change mentioned above.
@MrDHat Are you still having troubles with this? I can take a stab at trying to understand what's going on, but can make no promises. If you are having troubles, then mind doing me a huge favour, and could you send a test file that I can directly run?
I am not facing this issue anymore. AFAIR, the issue was with the wrong password being supplied.
Could you tell me how to solve this problem? My password is right.
I get this error whenever I am trying to query something from the db:
Couldn't read expected bytes for message length. Read: 0 Expected: 2. Internal Error(*errors.errorString):driver: bad connection
My code worked fine until a couple of hours back. Nothing changed in my setup or code.
PreparePipeline
,ExecPipeline
etc work fine and do not throw any errors. I am using neo4j with docker fwiw. Here is a sample test which is failing: