Skip to content

Commit da2af74

Browse files
committed
fix npe
1 parent 0585650 commit da2af74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridDhtTxFinishFuture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ private void onNodeLeft(UUID nodeId) {
702702
for (UUID backupId : backups) {
703703
ClusterNode backup = cctx.discovery().node(backupId);
704704

705-
if (!backup.isLocal()) {
705+
if (backup != null && !backup.isLocal()) {
706706
if (salvageReq == null)
707707
salvageReq = new GridDhtTxSalvageMessage(tx.nearXidVersion());
708708

0 commit comments

Comments
 (0)