Skip to content

Commit a72bd5c

Browse files
committed
Semi-colons
1 parent fc397ee commit a72bd5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Client.prototype.connect = function(callback) {
163163

164164
con.once('end', function() {
165165
if(self.activeQuery) {
166-
var disconnectError = new Error('Stream unexpectedly ended during query execution')
166+
var disconnectError = new Error('Stream unexpectedly ended during query execution');
167167
self.activeQuery.handleError(disconnectError);
168168
self.activeQuery = null;
169169
}

lib/query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Query.prototype.handleCommandComplete = function(msg, con) {
7272
this._result.addCommandComplete(msg);
7373
//need to sync after each command complete of a prepared statement
7474
if(this.isPreparedStatement) {
75-
con.sync()
75+
con.sync();
7676
}
7777
};
7878

0 commit comments

Comments
 (0)