Skip to content

Commit 594a8e4

Browse files
authored
Add null check & update server version (#1519)
1 parent 6e45fb7 commit 594a8e4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

scripts/download-rc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
2-
const HZ_VERSION = '5.2.4';
3-
const HZ_TEST_VERSION = '5.2.4';
2+
const HZ_VERSION = '5.4.0-SNAPSHOT';
3+
const HZ_TEST_VERSION = '5.4.0-SNAPSHOT';
44
const HAZELCAST_TEST_VERSION = HZ_TEST_VERSION;
55
const HAZELCAST_VERSION = HZ_VERSION;
66
const HAZELCAST_ENTERPRISE_VERSION = HZ_VERSION;

test/integration/backward_compatible/parallel/map/MapLockTest.js

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ describe('MapLockTest', function () {
5050
while (attempt++ < MAX_ATTEMPTS) {
5151
for (let i = 0; i < DEFAULT_PARTITION_COUNT; i++) {
5252
const uuid = partitionService.getPartitionOwner(i);
53+
if (uuid === null || uuid === undefined) {
54+
continue;
55+
}
5356
if (uuid.toString() === member.uuid) {
5457
return;
5558
}

0 commit comments

Comments
 (0)