You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2019/05/26 12:30:13 UTC

svn commit: r1860060 - in /jmeter/trunk: src/core/org/apache/jmeter/samplers/SampleResult.java xdocs/changes.xml

Author: pmouawad
Date: Sun May 26 12:30:13 2019
New Revision: 1860060

URL: http://svn.apache.org/viewvc?rev=1860060&view=rev
Log:
Bug 63464 - image/svg+xml is wrongly considered as binary
Bugzilla Id: 63464

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleResult.java
    jmeter/trunk/xdocs/changes.xml

Modified: jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleResult.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleResult.java?rev=1860060&r1=1860059&r2=1860060&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleResult.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleResult.java Sun May 26 12:30:13 2019
@@ -112,7 +112,8 @@ public class SampleResult implements Ser
     private static final String[] NON_BINARY_TYPES = {
         "audio/x-mpegurl",  //$NON-NLS-1$ (HLS Media Manifest)
         "audio/mpegurl",    //$NON-NLS-1$ (HLS Media Manifest)
-        "video/f4m"         //$NON-NLS-1$ (Flash Media Manifest)
+        "video/f4m",        //$NON-NLS-1$ (Flash Media Manifest)
+        "image/svg+xml"     //$NON-NLS-1$ (SVG is xml)
         };
 
 

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1860060&r1=1860059&r2=1860060&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Sun May 26 12:30:13 2019
@@ -180,6 +180,7 @@ to view the last major behaviors with th
 <h3>General</h3>
 <ul>
     <li><bug>63394</bug>JMeter should fail with non-zero when test execution fails (due to missing test plan or other reason). Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
+    <li><bug>63464</bug>image/svg+xml is wrongly considered as binary</li>
 </ul>
 
  <!--  =================== Thanks =================== -->