*/
public static void removePool(String poolName) {
logger.info("Pelops removes pool {}", poolName);
IThriftPool pool = poolMap.remove(poolName);
if (pool != null) // avoid null pointers
pool.shutdown();
}
/**
* Shutdown Pelops. This proceeds by shutting down all connection pools.
*/