jongyoul commented on code in PR #4556:
URL: https://github.com/apache/zeppelin/pull/4556#discussion_r1070950816
##########
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/PooledRemoteClient.java:
##########
@@ -44,6 +45,9 @@ public PooledRemoteClient(SupplierWithIO<T> supplier, int
connectionPoolSize) {
GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig();
poolConfig.setMaxTotal(connectionPoolSize);
poolConfig.setMaxIdle(connectionPoolSize);
+ // ZEPPELIN-5875 maven-shade-plugin issue
+ //
`org/apache/zeppelin/shaded/org.apache.zeppelin.shaded.org.apache.commons.pool2.impl.DefaultEvictionPolicy`
Review Comment:
Yes, correct. It's a kind of shade configuration issue. We need to change it
but I thought we should make it normal at first. and Then, we could improve it.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]