remove unused log lines projection

This commit is contained in:
oleg 2015-11-19 19:07:55 +03:00
parent 8c8b600ab8
commit 24007ff7ff
2 changed files with 1 additions and 9 deletions

8
db.js
View File

@ -94,14 +94,6 @@ exports.init = function(dbPath, params, callback) {
value: function(logLine) {
return _(logLine).pick('number', 'text');
}
},
{
key: {
buildId: 1
},
value: function(logLine) {
return _(logLine).pick('number', 'text');
}
}
],
withUniqueId: false

View File

@ -53,7 +53,7 @@ exports.init = function(app, callback) {
Steppy(
function() {
db.logLines.find({
start: {buildId: buildId, numberStr: 0},
start: {buildId: buildId, numberStr: ''},
}, this.slot());
},
function(err, lines) {