destroyAllNow also has a callback
This commit is contained in:
parent
382d6d66f9
commit
85c28e9088
11
lib/index.js
11
lib/index.js
@ -25,11 +25,12 @@ PG.prototype.end = function() {
|
|||||||
var pool = self.pools.all[key];
|
var pool = self.pools.all[key];
|
||||||
delete self.pools.all[key];
|
delete self.pools.all[key];
|
||||||
pool.drain(function() {
|
pool.drain(function() {
|
||||||
pool.destroyAllNow();
|
pool.destroyAllNow(function() {
|
||||||
count--;
|
count--;
|
||||||
if(count === 0) {
|
if(count === 0) {
|
||||||
self.emit('ended');
|
self.emit('ended');
|
||||||
}
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user