diff --git a/README.md b/README.md index 8e68c63..9839f3f 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,6 @@ same request format -> geocoder-converter -> a geocoding provider like phot same response format <- geocoder-converter <---/ ``` - -[![Build Status](https://travis-ci.org/graphhopper/geocoder-converter.svg?branch=master)](https://travis-ci.org/graphhopper/geocoder-converter) - ## Starting the Server Run the following commands from the main directory - **the version of the .jar might be different**: diff --git a/src/main/java/com/graphhopper/converter/resources/AbstractConverterResource.java b/src/main/java/com/graphhopper/converter/resources/AbstractConverterResource.java index b47a26b..69b796c 100644 --- a/src/main/java/com/graphhopper/converter/resources/AbstractConverterResource.java +++ b/src/main/java/com/graphhopper/converter/resources/AbstractConverterResource.java @@ -19,8 +19,8 @@ abstract class AbstractConverterResource { protected final Logger LOGGER = LoggerFactory.getLogger(this.getClass()); int fixLimit(int limit) { - if (limit > 30) { - return 30; + if (limit > 500) { + return 500; } return limit; }