Skip to content

Commit 6d90bea

Browse files
authored
Fix ClientSSLTest Certificate (#1535)
The [nightly tests are failing](https://github.com/hazelcast/hazelcast-nodejs-client/actions/runs/14506740078/job/40704373059): ``` [DefaultLogger] WARN at ConnectionManager: Error during initial connection to 127.0.0.1:43973 Error: certificate has expired ``` The certificates were _manually_ updated in #1525, but the upstream source is updated automatically and so they have become outdated. We already download the upstream source as part of the action anyway, so updated to overwrite the existing `keystore.jks` with the latest version. [Example execution showing success of `ClientSSLTest`](https://github.com/hazelcast/hazelcast-nodejs-client/actions/runs/14512620752/job/40714565969) (other test failures out of scope).
1 parent b930912 commit 6d90bea

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/coverage_runner.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
- name: Copy certificates JAR to destination with the appropriate name
7878
run: |
7979
cp ${{ github.workspace }}/certs/certs.jar ${{ github.workspace }}/certs.jar
80+
unzip -p ${{ github.workspace }}/certs.jar com/hazelcast/nio/ssl/letsencrypt.jks > test/integration/backward_compatible/parallel/ssl/keystore.jks
8081
8182
- name: Install dependencies and compile client
8283
run: |

.github/workflows/nightly_runner_master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- name: Copy certificates JAR to destination with the appropriate name
3838
run: |
3939
cp ${{ github.workspace }}/certs/certs.jar ${{ github.workspace }}/certs.jar
40+
unzip -p ${{ github.workspace }}/certs.jar com/hazelcast/nio/ssl/letsencrypt.jks > test/integration/backward_compatible/parallel/ssl/keystore.jks
4041
- name: Install dependencies and compile client
4142
run: |
4243
npm install

0 commit comments

Comments
 (0)