You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2020/02/12 15:27:25 UTC

[GitHub] [accumulo] jzgithub1 commented on issue #1488: ManyWriteAheadLogsIT is flakey

jzgithub1 commented on issue #1488: ManyWriteAheadLogsIT is flakey
URL: https://github.com/apache/accumulo/issues/1488#issuecomment-585259796
 
 
   @ctubbsii ,  I have run this test inside of IntelliJ IDE on repeat mode for 30 times and have not seen the test fail in the way you show up above.  Maybe allowing the number of open WALs to be 0 is what you want to do.  That way the assertTrue on line 212 in addOpenWals in ManyWriteAheadLogsIT.java won't throw an assertion error:
   ```java
   assertTrue("Open WALs not in expected range " + open, open > 0 && open < 4);
   ```
   changed to:
   
   ```java
   assertTrue("Open WALs not in expected range " + open, open >= 0 && open < 4);
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services