Avoid duplicate connecting
This commit is contained in:
parent
9d74759f90
commit
56af9673c1
|
@ -137,28 +137,26 @@ DataSource.prototype.setup = function(name, settings) {
|
|||
|
||||
schema.connect = function(cb) {
|
||||
var schema = this;
|
||||
if(schema.connected) {
|
||||
if (cb) {
|
||||
process.nextTick(cb);
|
||||
}
|
||||
if(schema.connected || schema.connecting) {
|
||||
process.nextTick(function() {
|
||||
cb && cb();
|
||||
});
|
||||
return;
|
||||
}
|
||||
schema.connecting = true;
|
||||
if (schema.adapter.connect) {
|
||||
schema.adapter.connect(function(err) {
|
||||
schema.adapter.connect(function(err, result) {
|
||||
if (!err) {
|
||||
schema.connected = true;
|
||||
schema.connecting = false;
|
||||
schema.emit('connected');
|
||||
}
|
||||
if (cb) {
|
||||
cb(err);
|
||||
}
|
||||
cb && cb(err, result);
|
||||
});
|
||||
} else {
|
||||
if (cb) {
|
||||
process.nextTick(cb);
|
||||
}
|
||||
process.nextTick(function() {
|
||||
cb && cb();
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue