Github user ohadshacham commented on a diff in the pull request: https://github.com/apache/incubator-omid/pull/46#discussion_r223975555 --- Diff: hbase-client/src/test/java/org/apache/omid/transaction/OmidTestBase.java --- @@ -89,6 +88,8 @@ public void beforeGroups(ITestContext context) throws Exception { TSOServerConfig tsoConfig = new TSOServerConfig(); tsoConfig.setPort(1234); tsoConfig.setConflictMapSize(1000); + tsoConfig.setLowLatency(isLowLatency()); + tsoConfig.setWaitStrategy("LOW_CPU"); --- End diff -- nice
---