Github user JamesRTaylor commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/290#discussion_r164264235
--- Diff:
phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java
---
@@ -211,6 +211,8 @@ public void run() {
t2.start();
doneSignal.await(60, TimeUnit.SECONDS);
+
TestUtil.dumpTable(conn.unwrap(PhoenixConnection.class).getQueryServices().getTable(Bytes.toBytes(tableName)));
+
TestUtil.dumpTable(conn.unwrap(PhoenixConnection.class).getQueryServices().getTable(Bytes.toBytes(indexName)));
--- End diff --
Minor nit: remove these dumpTable calls.
---