neumino / rethinkdbdash

An advanced Node.js driver for RethinkDB with a connection pool, support for streams etc.
MIT License
848 stars 109 forks source link

r.getPoolMaster().on('healthy' never fires #366

Open paulrobello opened 6 years ago

paulrobello commented 6 years ago

Using npm package version 2.3.31 the following code never fires even though the size event does and queries can be run

r.getPoolMaster().on('healthy', function(healthy) { if (healthy === true) { console.log('We can run queries.'); } else { console.log('No queries can be run.'); } });

cur3n4 commented 5 years ago

Experiencing the same issue.