Author: breed
Date: Wed Nov 18 17:47:38 2009
New Revision: 881849

URL: http://svn.apache.org/viewvc?rev=881849&view=rev
Log:
ZOOKEEPER-3. syncLimit has slightly different comments in the class header, and 
> inline with the variable.

Modified:
    hadoop/zookeeper/trunk/CHANGES.txt
    
hadoop/zookeeper/trunk/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java

Modified: hadoop/zookeeper/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/CHANGES.txt?rev=881849&r1=881848&r2=881849&view=diff
==============================================================================
--- hadoop/zookeeper/trunk/CHANGES.txt (original)
+++ hadoop/zookeeper/trunk/CHANGES.txt Wed Nov 18 17:47:38 2009
@@ -120,6 +120,9 @@
   ZOOKEEPER-519. Followerhandler should close the socket if it gets an 
exception on a write.
   (mahadev via breed)
 
+  ZOOKEEPER-3. syncLimit has slightly different comments in the class header, 
and > inline with the variable.
+  (mahadev via breed)
+
 IMPROVEMENTS:
   ZOOKEEPER-473. cleanup junit tests to eliminate false positives due to
   "socket reuse" and failure to close client (phunt via mahadev)

Modified: 
hadoop/zookeeper/trunk/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java
URL: 
http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java?rev=881849&r1=881848&r2=881849&view=diff
==============================================================================
--- 
hadoop/zookeeper/trunk/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java
 (original)
+++ 
hadoop/zookeeper/trunk/src/java/main/org/apache/zookeeper/server/quorum/QuorumPeer.java
 Wed Nov 18 17:47:38 2009
@@ -670,16 +670,14 @@
     }
         
     /**
-     * Get the number of ticks that can pass between sending a request and 
getting
-     * an acknowledgement
+     * Get the synclimit
      */
     public int getSyncLimit() {
         return syncLimit;
     }
 
     /**
-     * Set the number of ticks that can pass between sending a request and 
getting
-     * an acknowledgement
+     * Set the synclimit
      */
     public void setSyncLimit(int syncLimit) {
         this.syncLimit = syncLimit;


Reply via email to