You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by re...@apache.org on 2010/12/02 23:26:16 UTC

svn commit: r1041616 - in /incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage: ./ src/main/java/org/apache/clerezza/rdf/jena/tdb/storage/TdbTcProvider.java

Author: reto
Date: Thu Dec  2 22:26:15 2010
New Revision: 1041616

URL: http://svn.apache.org/viewvc?rev=1041616&view=rev
Log:
CLEREZZA-355: no longer synchronizing after atop has been requested

Modified:
    incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/   (props changed)
    incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/src/main/java/org/apache/clerezza/rdf/jena/tdb/storage/TdbTcProvider.java

Propchange: incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Dec  2 22:26:15 2010
@@ -1,2 +1,5 @@
 target
 .project
+.classpath
+.externalToolBuilders
+.settings

Modified: incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/src/main/java/org/apache/clerezza/rdf/jena/tdb/storage/TdbTcProvider.java
URL: http://svn.apache.org/viewvc/incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/src/main/java/org/apache/clerezza/rdf/jena/tdb/storage/TdbTcProvider.java?rev=1041616&r1=1041615&r2=1041616&view=diff
==============================================================================
--- incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/src/main/java/org/apache/clerezza/rdf/jena/tdb/storage/TdbTcProvider.java (original)
+++ incubator/clerezza/trunk/org.apache.clerezza.parent/org.apache.clerezza.rdf.jena.tdb.storage/src/main/java/org/apache/clerezza/rdf/jena/tdb/storage/TdbTcProvider.java Thu Dec  2 22:26:15 2010
@@ -99,7 +99,9 @@ public class TdbTcProvider implements We
 				} catch (InterruptedException ex) {
 					interrupt();
 				}
-				syncWithFileSystem();
+				if (!stopRequested) {
+					syncWithFileSystem();
+				}
 			}
 		}