FSchumacher commented on a change in pull request #700:
URL: https://github.com/apache/jmeter/pull/700#discussion_r817764764
##########
File path:
src/protocol/http/src/test/java/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
##########
@@ -1219,6 +1276,32 @@ private int getPositionOfBody(String stringToCheck) {
}
private String getBoundaryStringFromContentType(String requestHeaders) {
+ if (useJavaRegex) {
+ return
getBoundaryStringFromContentTypeWithJavaRegex(requestHeaders);
+ }
+ return getBoundaryStringFromContentTypeWithOroRegex(requestHeaders);
+ }
+
+ private String getBoundaryStringFromContentTypeWithJavaRegex(String
requestHeaders) {
Review comment:
That API is not really new. Is wise to change it in this PR?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]