You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ti...@apache.org on 2023/04/12 02:21:15 UTC

[curator] branch master updated: Fix type "JMV" to "JVM" in LeaderLatch (#456)

This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/curator.git


The following commit(s) were added to refs/heads/master by this push:
     new caccd293 Fix type "JMV" to "JVM" in LeaderLatch (#456)
caccd293 is described below

commit caccd293b60c14768509c55d3975f0936cb0a4fe
Author: David Copley <da...@canva.com>
AuthorDate: Wed Apr 12 12:21:07 2023 +1000

    Fix type "JMV" to "JVM" in LeaderLatch (#456)
---
 .../java/org/apache/curator/framework/recipes/leader/LeaderLatch.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/leader/LeaderLatch.java b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/leader/LeaderLatch.java
index 800cfec9..26193a04 100644
--- a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/leader/LeaderLatch.java
+++ b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/leader/LeaderLatch.java
@@ -55,7 +55,7 @@ import org.apache.curator.utils.PathUtils;
 
 /**
  * <p>
- * Abstraction to select a "leader" amongst multiple contenders in a group of JMVs connected to
+ * Abstraction to select a "leader" amongst multiple contenders in a group of JVMs connected to
  * a Zookeeper cluster. If a group of N thread/processes contend for leadership one will
  * randomly be assigned leader until it releases leadership at which time another one from the
  * group will randomly be chosen