Skip to content

Commit 4f1a1ee

Browse files
committed
version update and clarification
1 parent 2b96dff commit 4f1a1ee

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

core/src/main/kotlin/org/evomaster/core/remote/HttpClientFactory.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ object HttpClientFactory {
7272
.property(ClientProperties.FOLLOW_REDIRECTS, followRedirects)
7373
// see discussion about OpenAPI and RFC 9110 in RestActionBuilderV3
7474
.property(ClientProperties.SUPPRESS_HTTP_COMPLIANCE_VALIDATION,true)
75+
// buffer request bodies to send Content-Length instead of chunked transfer-encoding,
76+
// which some servers (e.g. Django/WSGI dev server) do not parse reliably
7577
.property(ClientProperties.REQUEST_ENTITY_PROCESSING, RequestEntityProcessing.BUFFERED)
7678
.build()
7779

version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def replaceInBBE2E():
5858
regex = re.compile(r'\s*<version>.*</version><!--MARKER-->\s*')
5959
replacement = ' <version>'+version+'</version><!--MARKER-->\n'
6060
replace("core-tests/e2e-tests/spring/spring-rest-bb/maven/pom.xml", regex, replacement)
61+
replace("core-tests/e2e-tests/python-rest-bb/maven/pom.xml", regex, replacement)
6162

6263
def replaceInPyPi():
6364
regex = re.compile(r'version =.*')

0 commit comments

Comments
 (0)