You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2012/07/10 17:23:36 UTC

svn commit: r1359726 - /accumulo/trunk/server/src/main/java/org/apache/accumulo/server/master/state/ZooStore.java

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) {