keith-turner commented on code in PR #5395: URL: https://github.com/apache/accumulo/pull/5395#discussion_r1990206163
########## test/src/main/java/org/apache/accumulo/test/functional/SlowIterator.java: ########## @@ -50,21 +51,37 @@ public static void setSeekSleepTime(IteratorSetting is, long t) { is.addOption(SEEK_SLEEP_TIME, Long.toString(t)); } + public static void sleepUninterruptibly(IteratorSetting is, boolean b) { + is.addOption(SLEEP_UNINTERRUPTIBLY, Boolean.toString(b)); + } + + private void sleep(long time) throws IOException { Review Comment: I checked these changes by jstacking a tablet server running the new test and verifying that compaction threads were sleeping both ways. -- 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. To unsubscribe, e-mail: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org