yyahav commented on issue #6233: URL: https://github.com/apache/jmeter/issues/6233#issuecomment-2630680522
> When a request with a long payload is sent (for example with a base64 file code), when I click on this request on the View Result Tree crashes and I am forced to terminate jmeter. > > I've tried with this in jmeter.properties, set jsyntaxtextarea.linewrap=false No changes @gianhub16 These following settings are in the same `jmeter.properties` file and are specific for View Results Tree: ``` # UI gets unresponsive when response contains very long lines, # So we break lines by adding artificial line breaks # The break is introduced somewhere in between soft_wrap_line_size..max_line_size # We try to break on word boundaries first view.results.tree.max_line_size=110000 view.results.tree.soft_wrap_line_size=100000 # Even with the above setting the UI can be unresponsive on large contents in the text view, # so we allow to switch to a simpler view mode, that is faster, but does not break lines. # Can be switched off by setting it to -1 view.results.tree.simple_view_limit=10000 ``` -- 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: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org