Github user sohami commented on a diff in the pull request: https://github.com/apache/drill/pull/1203#discussion_r181165145 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/server/Drillbit.java --- @@ -180,7 +180,7 @@ public void run() throws Exception { if (profileStoreProvider != storeProvider) { profileStoreProvider.start(); } - final DrillbitEndpoint md = engine.start(); + DrillbitEndpoint md = engine.start(); --- End diff -- if you do below then you need to remove final otherwise not
---