不要怂,就是干,撸起袖子干!

Commit 7d5e5210 by Dmitry Chornyi

Fixed whitespace

1 parent e8cbc7de
Showing with 11 additions and 7 deletions
......@@ -411,31 +411,35 @@ module.exports = (function() {
queueItem.query.client = connection
queueItem.client = connection
queueItem.query
.success(function(){ afterQuery.call(self, queueItem) })
.error(function(){ afterQuery.call(self, queueItem) })
.success(function () {
afterQuery.call(self, queueItem)
})
.error(function () {
afterQuery.call(self, queueItem)
})
queueItem.query.run(queueItem.sql, queueItem.client)
})
}
ConnectorManager.prototype.__defineGetter__('hasQueuedItems', function() {
ConnectorManager.prototype.__defineGetter__('hasQueuedItems', function () {
return (this.queue.length > 0) || (this.activeQueue.length > 0) || (this.client && this.client._queue && (this.client._queue.length > 0))
})
// legacy
ConnectorManager.prototype.__defineGetter__('hasNoConnections', function() {
ConnectorManager.prototype.__defineGetter__('hasNoConnections', function () {
return !this.hasQueuedItems
})
ConnectorManager.prototype.__defineGetter__('isConnected', function() {
ConnectorManager.prototype.__defineGetter__('isConnected', function () {
return this.client != null
})
var disconnectIfNoConnections = function() {
var disconnectIfNoConnections = function () {
var self = this
this.disconnectTimeoutId && clearTimeout(this.disconnectTimeoutId)
this.disconnectTimeoutId = setTimeout(function() {
this.disconnectTimeoutId = setTimeout(function () {
self.isConnected && !self.hasQueuedItems && self.disconnect()
}, 100)
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!