We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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