Skip to content

Commit

Permalink
Removed RecordGeneratedAt from Spat and Map Query
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Wiens committed Dec 21, 2023
1 parent 9261eef commit 2d4ad8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public Query getQuery(Integer intersectionID, Long startTime, Long endTime, bool
}

query.addCriteria(Criteria.where("properties.timeStamp").gte(startTimeString).lte(endTimeString));
query.fields().exclude("recordGeneratedAt");
return query;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public Query getQuery(Integer intersectionID, Long startTime, Long endTime) {
}
query.limit(props.getMaximumResponseSize());
query.addCriteria(Criteria.where("odeReceivedAt").gte(startTimeString).lte(endTimeString));
query.fields().exclude("recordGeneratedAt");
return query;
}

Expand Down

0 comments on commit 2d4ad8f

Please sign in to comment.