Can't get a basic query to work with Neomodels db.cypher_query() - it used to work - it does work in Neo4j Browser

What happens is my Django app prints many lines looking like:

[#0000] C: routing address IPv4Address(('gdb-gotbmnltkykk5vovfrpb.graphenedb.com', 24786))

and then the view thread crashes (or something) - in other words, I cannot step over this db.cypher_query() call successfully.

My query is very simple:

MATCH (D:Diagram)-[:CONTAINS]->(X:Object), p=(X)-[:MAPS_TO*]->(:Object) WHERE D.uid = 'abaaa79c616e40f9a07ae3b1acbac871' RETURN p ORDER BY length(p) DESC

And to prove to you that there is actually a diagram with that uid that exists:

Found the issue. Something to do with Verbose Logging in Python / Django. I commented out my logging config in settings.py:

And it doesn't crash now!