bigrck64 commented on code in PR #6359:
URL: https://github.com/apache/jmeter/pull/6359#discussion_r2623629984
##########
src/jorphan/src/main/java/org/apache/jorphan/util/StringWrap.java:
##########
@@ -126,7 +126,7 @@ public String wrap(String input, String delimiter) {
}
// Try adding the next line if it does not exceed maxWrap
int next = nextLineSeparator;
- if (next != -1 && pos - next <= maxWrap) {
+ if (next != -1 && next - pos <= maxWrap) {
Review Comment:
Hello VLSI, thanks for replying :)
As test file, here is one big .html file that make JMeter "View Results
Tree" freeze during ~60 secs.
It freeze because there is one line with 2345558 bytes long.
[long-line-test.html](https://github.com/user-attachments/files/24193628/long-line-test.html)
I tried every parameters who deal about "very long lines" in
jmeter.properties 5.6.3 without success.
U-I just freeze when I click on the view results tree line to see "Response
data".
--
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]