Skip to content

Commit b76da6c

Browse files
committed
Fixed indentation
1 parent c931ee8 commit b76da6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/dialects/mysql/connector-manager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ module.exports = (function() {
374374

375375
var dequeue = function(queueItem) {
376376
//return the item's connection to the pool
377-
if (this.pool && queueItem.client) {
377+
if (this.pool && queueItem.client) {
378378
this.pool.release(queueItem.client)
379379
}
380380
this.activeQueue = without(this.activeQueue, queueItem)
@@ -404,7 +404,7 @@ module.exports = (function() {
404404
type: queueItem.query.options.type
405405
}, function (err, connection) {
406406
if (err) {
407-
afterQuery.call(self, queueItem)
407+
afterQuery.call(self, queueItem)
408408
queueItem.query.emit('error', err)
409409
return
410410
}

0 commit comments

Comments
 (0)