Skip to content

Commit

Permalink
Merge pull request #4 from Eonblast/master
Browse files Browse the repository at this point in the history
I made the 100,000,000 test and found this ;-)
nice job!
  • Loading branch information
Wombat42 committed Feb 17, 2012
2 parents 32444ac + fa8545a commit 7feedfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connection.js
Expand Up @@ -124,7 +124,7 @@ con.call = function(query, readCallback, writeCallback) {

con._getUID = function() {
var id = String(this._id < 0xFFFFFFFF ? this._id++ : this._id = 0);
var uid = this._zeros(8 - id.length).join('') + id;
var uid = this._zeros(10 - id.length).join('') + id;
return uid;
}

Expand Down

0 comments on commit 7feedfe

Please sign in to comment.