Skip to content

Commit

Permalink
Merge pull request #4457 from ml054/RavenDB_5323
Browse files Browse the repository at this point in the history
RavenDB-5323 Pagining on /indexes?namesWithTypeOnly=true shows 'Canno…
  • Loading branch information
ayende committed Sep 23, 2016
2 parents 1117c51 + d1c6d6d commit 5d7dac5
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -9,7 +9,11 @@ class getIndexNamesCommand extends commandBase {
execute(): JQueryPromise<any> {
var action = this.withType ? "namesWithTypeOnly" : "namesOnly";
var url = "/indexes/?" + action + "=true";
return this.query(url, null, this.db);
var args =
{
pageSize: 1024
};
return this.query(url, args, this.db);
}
}

Expand Down

0 comments on commit 5d7dac5

Please sign in to comment.