You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately the neo4j database in https://github.com/wagenrace/python_dep_local_graph has some quirks with case sensitivity. It seems that the Package column has a capitalized first letter on Windows, whereas it has a non-capitalized first letter on Linux. This leads to neo4j having a lower case package identifier on Linux (production) and the query breaking.
Proposed fix:
Force lowercase on the identifiers on import somehow
Change MATCH (n:Package)-[:DEPENDS_ON*0..]->(m:Package) to MATCH (n:package)-[:DEPENDS_ON*0..]->(m:package)
in line
Hi,
Unfortunately the neo4j database in https://github.com/wagenrace/python_dep_local_graph has some quirks with case sensitivity. It seems that the Package column has a capitalized first letter on Windows, whereas it has a non-capitalized first letter on Linux. This leads to neo4j having a lower case
package
identifier on Linux (production) and the query breaking.Proposed fix:
MATCH (n:Package)-[:DEPENDS_ON*0..]->(m:Package)
toMATCH (n:package)-[:DEPENDS_ON*0..]->(m:package)
in line
python_dep_graph/app/main.py
Line 31 in 8741ebc
The text was updated successfully, but these errors were encountered: