Author: ecn
Date: Tue Jul 10 15:23:36 2012
New Revision: 1359726

URL: http://svn.apache.org/viewvc?rev=1359726&view=rev
Log:
ACCUMULO-681 used sync incorrectly; removing it until we understand that it is 
a real problem

Modified:
    
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/master/state/ZooStore.java

Modified: 
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/master/state/ZooStore.java
URL: 
http://svn.apache.org/viewvc/accumulo/trunk/server/src/main/java/org/apache/accumulo/server/master/state/ZooStore.java?rev=1359726&r1=1359725&r2=1359726&view=diff
==============================================================================
--- 
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/master/state/ZooStore.java
 (original)
+++ 
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/master/state/ZooStore.java
 Tue Jul 10 15:23:36 2012
@@ -73,7 +73,6 @@ public class ZooStore implements Distrib
     try {
       path = relative(path);
       ZooReaderWriter.getInstance().putPersistentData(path, bs, 
NodeExistsPolicy.OVERWRITE);
-      ZooReaderWriter.getInstance().sync(path);
       cache.clear();
       log.debug("Wrote " + new String(bs) + " to " + path);
     } catch (Exception ex) {


Reply via email to