with happybase.ConnectionPool(10) as pool: <- need this or close() function
with pool.connection() as conn:
xxxxxx
there is no remove resource in ConnectionPool. so i close connection manually.
try:
while True:
conn = pool._queue.get(True, 0)
conn.close()
except Exception as e:
pass