Github user bitblender commented on a diff in the pull request:
https://github.com/apache/drill/pull/921#discussion_r148872633
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/test/ClusterFixture.java ---
@@ -471,6 +471,22 @@ public void close() throws Exception {
}
/**
+ * Shutdown the drillbit given the name of the drillbit.
+ */
+ public void close_drillbit(final String drillbitname) throws Exception {
+ Exception ex = null;
+ for (Drillbit bit : drillbits())
+ {
--- End diff --
placement of '{'
---