1) Fix configuration property naming issue.

This commit is contained in:
Eric Tschetter 2012-10-30 12:08:30 -05:00
parent f062e136d0
commit d7f85cfbc4
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class SearchQueryQueryToolChest implements QueryToolChest<Result<SearchRe
// I dislike this static loading of properies, but it's the only mechanism available right now.
Properties props = Initialization.loadProperties();
maxSearchLimit = PropUtils.getPropertyAsInt(props, "com.metamx.query.topN.minSearchLimit", 1000);
maxSearchLimit = PropUtils.getPropertyAsInt(props, "com.metamx.query.search.maxSearchLimit", 1000);
}
@Override