Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions changelog/unreleased/SOLR-17972-distributed-lock-lead.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: Retry creation of ZK lock on transient connection loss.
type: fixed
authors:
- name: Pierre Salagnac
links:
- name: SOLR-17972
url: https://issues.apache.org/jira/browse/SOLR-17972
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ protected ZkDistributedLock(SolrZkClient zkClient, String lockDir, String lockNo
+ lockNodePrefix,
null,
CreateMode.EPHEMERAL_SEQUENTIAL,
false);
true);

sequence = getSequenceFromNodename(lockNode);
}
Expand Down