Closed nodesocket closed 7 years ago
I must be missing it, but how can I close an established thinky connection?
const Orm = require('thinky')(config);
Don't see a close() on Orm or Orm.r.
close()
Orm
Orm.r
You don't handle connections with thinky. Rethinkdbdash does it under the hood.
If you want to close all the connections, thinky.r.getPoolMaster().drain() is what you want.
I must be missing it, but how can I close an established thinky connection?
Don't see a
close()
onOrm
orOrm.r
.