Skip to content

Commit c71b938

Browse files
authored
TestKit support for None livenessCheckTimeoutMs (#710)
1 parent cc1c9f8 commit c71b938

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

testkitbackend/_async/requests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ async def NewDriver(backend, data):
111111
cert_paths = ("/usr/local/share/custom-ca-certificates/" + cert
112112
for cert in data["trustedCertificates"])
113113
kwargs["trusted_certificates"] = neo4j.TrustCustomCAs(*cert_paths)
114+
data.mark_item_as_read_if_equals("livenessCheckTimeoutMs", None)
114115

115116
data.mark_item_as_read("domainNameResolverRegistered")
116117
driver = neo4j.AsyncGraphDatabase.driver(

testkitbackend/_sync/requests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def NewDriver(backend, data):
111111
cert_paths = ("/usr/local/share/custom-ca-certificates/" + cert
112112
for cert in data["trustedCertificates"])
113113
kwargs["trusted_certificates"] = neo4j.TrustCustomCAs(*cert_paths)
114+
data.mark_item_as_read_if_equals("livenessCheckTimeoutMs", None)
114115

115116
data.mark_item_as_read("domainNameResolverRegistered")
116117
driver = neo4j.GraphDatabase.driver(

0 commit comments

Comments
 (0)