Listen for error on connection, close #4
This commit is contained in:
parent
e78fab6f5b
commit
65a0baa633
|
@ -17,6 +17,10 @@ exports.initialize = function initializeSchema(schema, callback) {
|
|||
socketPath: s.socketPath
|
||||
});
|
||||
|
||||
schema.client.on('error', function (err) {
|
||||
schema.emit('error', err);
|
||||
});
|
||||
|
||||
schema.adapter = new MySQL(schema.client);
|
||||
schema.adapter.schema = schema;
|
||||
// schema.client.query('SET TIME_ZONE = "+04:00"', callback);
|
||||
|
|
Loading…
Reference in New Issue