Skip to content

Commit 9c36e77

Browse files
committed
fix(ci): attempt to fix unit test
1 parent 81bd555 commit 9c36e77

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
node-version: 14.x
4646

4747
- name: Run the Maven verify phase
48-
run: mvn verify -Dgpg.skip=true
48+
run: mvn verify -Dgpg.skip=true --no-transfer-progress

src/test/resources/server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ var slice = Array.prototype.slice;
2525
// Disable recovery on demand
2626
io.use((socket, next) => {
2727
if (socket.handshake.auth?.noRecovery === true) {
28-
socket.handshake.auth._pid = 'invalid-' + Date.now();
28+
console.log(socket.handshake.auth);
29+
socket.handshake.auth.pid = 'invalid-' + Date.now();
2930
}
3031
next();
3132
});

0 commit comments

Comments
 (0)