Skip to content

Commit

Permalink
fix insert call in test
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Jun 19, 2016
1 parent 77b4b90 commit a46b6b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions svc/fullhistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ function processFullHistory(job, cb)
type: "api",
cassandra: cassandra,
skipAbilityUpgrades: true,
skipParse: true,
}, cb);
});
}, function(err)
Expand Down
1 change: 1 addition & 0 deletions tasks/getMatchesSeq.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ function getPage(match_seq_num, bucket)
{
skipCounts: true,
skipAbilityUpgrades: true,
skipParse: true,
cassandra: cassandra,
}, cb);
}, function(err)
Expand Down
3 changes: 2 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ before(function(done)
{
queries.insertMatch(db, redis, m,
{
type: "api"
type: "api",
skipParse: true,
}, cb);
}, cb);
},
Expand Down

0 comments on commit a46b6b8

Please sign in to comment.