Github user sohami commented on a diff in the pull request:
https://github.com/apache/drill/pull/950#discussion_r140395265
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/UserServer.java ---
@@ -70,22 +78,80 @@
private static final org.slf4j.Logger logger =
org.slf4j.LoggerFactory.getLogger(UserServer.class);
private static final String SERVER_NAME = "Apache Drill Server";
+ private final BootStrapContext bootStrapContext;
+ private final BufferAllocator allocator;
--- End diff --
No need to make these member variables since they are already available via
_UserConnectionConfig_ object.
---