Skip to content

Commit

Permalink
Increase limit on query size
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Jan 26, 2016
1 parent 830d87c commit 360e048
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void run(Transaction tx, Key userKey, String... args) {
return;
}
System.out.printf("User '%s' has %d comment[s].%n", userKey.name(), user.getLong("count"));
int limit = 10;
int limit = 200;
Map<DateTime, String> sortedComments = new TreeMap<>();
StructuredQuery<Entity> query =
Query.entityQueryBuilder()
Expand Down

0 comments on commit 360e048

Please sign in to comment.