Skip to content

Commit

Permalink
changing data count to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirothipan authored Jul 13, 2017
1 parent 3eb75d0 commit dec82f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static List<SensorRecord> getAllEventsForDevice(String tableName, String
int eventCount = analyticsDataAPI.searchCount(tenantId, tableName, query);
// limiting the data read from the server
int start = 0;
int dataCount = 1000;
int dataCount = 100;
if (eventCount == 0) {
return null;
} else if (eventCount >= dataCount){
Expand Down

0 comments on commit dec82f5

Please sign in to comment.