tarantool / cartridge-java

Tarantool Cartridge Java driver for Tarantool versions 1.10+ based on Netty framework
https://tarantool.io
Other
27 stars 11 forks source link

Connection to multiple instances doesn't shutdown EventLoopGroup by finishing the work #435

Closed SamVicV closed 8 months ago

SamVicV commented 11 months ago

cartridge-java version: 0.12.1

BinaryDiscoveryClusterAddressProvider.java

@Override
public void close() {
    super.close();
    try {
        client.close();
    } catch (Exception e) {
        throw new TarantoolClientException(e);
    }
}