Skip to content

Commit e31a863

Browse files
StephenCathcartrobsdedude
authored andcommitted
Fix typo
Signed-off-by: Rouven Bauer <[email protected]>
1 parent 6cd271a commit e31a863

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/neo4j/_async/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async def get_ssl_context(self) -> t.Optional[ssl.SSLContext]:
124124

125125
client_cert: t.Optional[ClientCertificate] = None
126126

127-
# try to server the cached ssl context
127+
# try to serve the cached ssl context
128128
async with self._ssl_context_cache_lock:
129129
if self._ssl_context_cache is not None:
130130
if self.client_certificate is None:

src/neo4j/_sync/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def get_ssl_context(self) -> t.Optional[ssl.SSLContext]:
124124

125125
client_cert: t.Optional[ClientCertificate] = None
126126

127-
# try to server the cached ssl context
127+
# try to serve the cached ssl context
128128
with self._ssl_context_cache_lock:
129129
if self._ssl_context_cache is not None:
130130
if self.client_certificate is None:

0 commit comments

Comments
 (0)