Skip to content

Commit 53efc84

Browse files
Revert "encrypted=False"
This reverts commit f49c617.
1 parent a92e2fb commit 53efc84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tpcc/pytpcc/drivers/neo4jdriver.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def loadConfig(self, config):
5151
self.password = str(config["password"])
5252

5353
try:
54-
self.driver = GraphDatabase.driver(self.uri, auth=(self.user, self.password), encrypted=False)
54+
self.driver = GraphDatabase.driver(self.uri, auth=(self.user, self.password))
5555
logging.info(f"Connected to Neo4j database: {self.uri}")
5656
except Exception as e:
5757
logging.error(f"Failed to connect to Neo4j database: {e}")
@@ -784,4 +784,4 @@ def get_counts(self):
784784
verification += "}"
785785
return verification
786786

787-
## CLASS
787+
## CLASS

0 commit comments

Comments
 (0)