Skip to content

Commit 8381e37

Browse files
committed
Fixed driver/session config bug
1 parent 14db4f9 commit 8381e37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo4j/v1/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def session(self, **config):
9999
>>> session = driver.session()
100100
101101
"""
102-
return Session(connect(self.host, self.port, **config))
102+
return Session(connect(self.host, self.port, **dict(self.config, **config)))
103103

104104

105105
class Result(list):

0 commit comments

Comments
 (0)