Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
itayw committed May 16, 2015
2 parents 9f2f437 + 87ff0fd commit 66fa79a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/dispatch/beacon.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ etl.verify = function (context, workspace, collection, documents, callback) {
documents = [documents];

var buildRowKey = function (obj) {
var key = obj.timestamp.toISOString();
var key;
try {
key = obj.timestamp.toISOString();
}
catch (ex) {
key = '';
}
traverse.map(obj, function (x) {
if (x && typeof (x) === 'string') {
key += x;
Expand Down

0 comments on commit 66fa79a

Please sign in to comment.