Skip to content

Commit

Permalink
RavenDB-5323 Pagining on /indexes?namesWithTypeOnly=true shows 'Canno…
Browse files Browse the repository at this point in the history
…t find index XXX'
  • Loading branch information
ml054 committed Sep 23, 2016
1 parent 1117c51 commit d1c6d6d
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 d1c6d6d

Please sign in to comment.