Skip to content

Commit ab524fc

Browse files
authored
fix changed HTTP POST size property name (#274)
related to #272
1 parent 0e411ec commit ab524fc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ Changelog
1313

1414
* fix bug which prevented error messages from being returned for non-unique parameters in POST requests ([#228])
1515
* fix a regression causing `…/groupBy/boundary` to crash when used with a geometry type filter using the (deprecated) types/keys/values parameter syntax ([#230])
16+
* fix changed name of property setting HTTP POST size ([#274])
1617

1718
[#217]: https://github.com/GIScience/ohsome-api/issues/217
1819
[#224]: https://github.com/GIScience/ohsome-api/issues/224
1920
[#227]: https://github.com/GIScience/ohsome-api/issues/227
2021
[#228]: https://github.com/GIScience/ohsome-api/pull/228
2122
[#230]: https://github.com/GIScience/ohsome-api/pull/230
23+
[#274]: https://github.com/GIScience/ohsome-api/pull/274
2224

2325

2426
## 1.6.3

src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ server.compression.min-response-size=1400
44
server.compression.mime-types=application/json,text/csv,application/geo+json
55
# Swagger documentation URL
66
springfox.documentation.swagger.v2.path=/docs
7-
# Setting max size for post requests to 100MB (default: 2MB)
8-
server.tomcat.max-http-post-size=104857600
7+
# Setting max size for (formencoded) post requests to 100MB (default: 2MB)
8+
server.tomcat.max-http-form-post-size=104857600
99
# Setting max file-size to 100MB (default: 10MB)
1010
spring.servlet.multipart.max-file-size=104857600
1111
# Setting max request-size to 100MB (default: 10MB)

0 commit comments

Comments
 (0)