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
In the config/packages/neo4j.yaml file, defining multiple drivers (e.g., local and aura) with different connection configurations results in only the default driver being recognized. Attempting to access multiple driver connections (such as for a local instance and Neo4j AuraDB) is not possible since only neo4j.driver is listed in the container instead of neo4j.driver.local and neo4j.driver.aura.
This issue impacts setups where multiple Neo4j connections are needed, as it restricts the ability to use separate connections in Symfony applications. No workaround has been identified yet.
Describe the Bug
In the
config/packages/neo4j.yaml
file, defining multiple drivers (e.g.,local
andaura
) with different connection configurations results in only the default driver being recognized. Attempting to access multiple driver connections (such as for a local instance and Neo4j AuraDB) is not possible since onlyneo4j.driver
is listed in the container instead ofneo4j.driver.local
andneo4j.driver.aura
.To Reproduce
Steps to reproduce the behavior:
neo4j.yaml
:php bin/console debug:container | grep neo4j
(orfindstr neo4j
on Windows).neo4j.driver
appears in the container, rather than bothneo4j.driver.local
andneo4j.driver.aura
.Expected Behavior
The container should list each defined driver separately, such as:
neo4j.driver.local
neo4j.driver.aura
Screenshots
Desktop (please complete the following information):
laudis/neo4j-php-client
3.1.3 ,neo4j/neo4j-bundle
1.0.0Additional Context
This issue impacts setups where multiple Neo4j connections are needed, as it restricts the ability to use separate connections in Symfony applications. No workaround has been identified yet.
@exaby73
The text was updated successfully, but these errors were encountered: