Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/921#discussion_r150972546
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/server/Drillbit.java ---
@@ -135,8 +157,9 @@ public Drillbit(
profileStoreProvider = storeProvider;
}
- engine = new ServiceEngine(manager, context, allowPortHunting,
isDistributedMode);
+ engine = new ServiceEngine(manager, context, true, isDistributedMode);
--- End diff --
Do we really want to change to always allow port hunting? This means that
an attempt to start a second Drillbit on a node will succeed by default, rather
than fail. OK?
---