Skip to content

Commit

Permalink
increase limit
Browse files Browse the repository at this point in the history
  • Loading branch information
karussell committed Apr 15, 2024
1 parent 72aa771 commit 79c28f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 79c28f9

Please sign in to comment.