Skip to content

Commit 05444a6

Browse files
authored
Merge pull request #192 from zhenlineo/1.5-fix-config-default
Fix the default value assigned to `encrypted`
2 parents 256016d + 470c5ad commit 05444a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

neo4j/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949

5050
default_config = {
5151
"auth": None, # provide your own authentication token such as {"username", "password"}
52-
"encrypted": True,
52+
"encrypted": None, # default to have encryption enabled if ssl is available on your platform
5353
"trust": TRUST_DEFAULT,
54-
"der-encoded_server_certificate": None,
54+
"der_encoded_server_certificate": None,
5555

5656
"user_agent": DEFAULT_USER_AGENT,
5757

0 commit comments

Comments
 (0)