Skip to content

Commit 950fc02

Browse files
authored
Merge pull request #162 from poissoncorp/RDBC-659
RDBC-659 GitHub Actions fails on multiple clients
2 parents b2eccad + 58f5333 commit 950fc02

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/RavenClient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
python-version: [ '3.7', '3.8', '3.9' , '3.10']
28-
serverVersion: [ "5.1", "5.2", "5.3" ]
28+
serverVersion: [ "5.2", "5.3", "5.4" ]
2929
fail-fast: false
3030

3131
steps:

ravendb/documents/store/definition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ def certificate_pem_path(self, value: str):
136136
f"Invalid file. File stored under the path '{value}' isn't valid .pem certificate. "
137137
f"BEGIN CERTIFICATE header wasn't found."
138138
)
139-
if "BEGIN RSA PRIVATE KEY" not in content:
139+
if "PRIVATE KEY" not in content:
140140
raise ValueError(
141141
f"Invalid file. File stored under the path '{value}' isn't valid .pem certificate. "
142-
f"BEGIN RSA PRIVATE KEY header wasn't found."
142+
f"PRIVATE KEY header wasn't found."
143143
)
144144
self.__certificate_pem_path = value
145145

0 commit comments

Comments
 (0)