You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Faced some an issue when trying to modify RpcPoolParams. Custom configuration is overwritten with default values coming from GenericKeyedObjectPoolConfig. Seems like BaseKeyedPool is ignoring a custom config inside its constructor (GenericKeyedObjectPool constructor resets all configuration values to the default ones):
open class BaseKeyedPool<K,T>( keyedPooledObjectFactory: BaseKeyedPooledObjectFactory<K, T>, config: GenericKeyedObjectPoolConfig<T> ): GenericKeyedObjectPool<K,T>(keyedPooledObjectFactory){
Probably I'm doing something wrong, could you please suggest?
The text was updated successfully, but these errors were encountered:
Faced some an issue when trying to modify RpcPoolParams. Custom configuration is overwritten with default values coming from GenericKeyedObjectPoolConfig. Seems like BaseKeyedPool is ignoring a custom config inside its constructor (GenericKeyedObjectPool constructor resets all configuration values to the default ones):
open class BaseKeyedPool<K,T>( keyedPooledObjectFactory: BaseKeyedPooledObjectFactory<K, T>, config: GenericKeyedObjectPoolConfig<T> ): GenericKeyedObjectPool<K,T>(keyedPooledObjectFactory){
Probably I'm doing something wrong, could you please suggest?
The text was updated successfully, but these errors were encountered: