Revision: 8033
http://sourceforge.net/p/bigdata/code/8033
Author: martyncutcher
Date: 2014-04-03 13:23:17 +0000 (Thu, 03 Apr 2014)
Log Message:
-----------
Remove sleep added to pass HA1 snapshot tests
Modified Paths:
--------------
branches/BIGDATA_MGC_HA1_HA5/bigdata/src/java/com/bigdata/journal/AbstractJournal.java
Modified: branches/BIGDATA_MGC_HA1_HA5/bigdata/src/java/com/bigdata/journal/AbstractJournal.java
===================================================================
--- branches/BIGDATA_MGC_HA1_HA5/bigdata/src/java/com/bigdata/journal/AbstractJournal.java 2014-04-03 09:48:19 UTC (rev 8032)
+++ branches/BIGDATA_MGC_HA1_HA5/bigdata/src/java/com/bigdata/journal/AbstractJournal.java 2014-04-03 13:23:17 UTC (rev 8033)
@@ -3429,13 +3429,12 @@
return;
if (!quorum.isHighlyAvailable()) {
- // FIXME: Find the reason why this delay is needed and remove it!
- //
- try {
- Thread.sleep(1000);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
+ // FIXME: Find the reason why this delay is needed to pass HA1 snapshot tests
+// try {
+// Thread.sleep(1000);
+// } catch (InterruptedException e) {
+// e.printStackTrace();
+// }
return;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|