miklosgergely commented on a change in pull request #2383:
URL: https://github.com/apache/hive/pull/2383#discussion_r651639876



##########
File path: 
service/src/java/org/apache/hive/service/cli/session/SessionManager.java
##########
@@ -224,7 +224,7 @@ private void createBackgroundOperationPool() {
     // Threads terminate when they are idle for more than the keepAliveTime
     // A bounded blocking queue is used to queue incoming operations, if 
#operations > poolSize
     String threadPoolName = "HiveServer2-Background-Pool";
-    final BlockingQueue queue = new 
LinkedBlockingQueue<Runnable>(poolQueueSize);
+    final BlockingQueue<Runnable> queue = new 
LinkedBlockingQueue<Runnable>(poolQueueSize);

Review comment:
       You can use <> here




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to