You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jakarta.apache.org by se...@apache.org on 2010/11/03 19:21:57 UTC

svn commit: r1030592 - in /jakarta/jmeter/trunk: src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java xdocs/changes.xml

Author: sebb
Date: Wed Nov  3 18:21:57 2010
New Revision: 1030592

URL: http://svn.apache.org/viewvc?rev=1030592&view=rev
Log:
Bug 50203 Cannot set property "jmeter.save.saveservice.default_delimiter=\t"

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

Modified: jakarta/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java
URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java?rev=1030592&r1=1030591&r2=1030592&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java (original)
+++ jakarta/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java Wed Nov  3 18:21:57 2010
@@ -317,7 +317,7 @@ public class SampleSaveConfiguration imp
             throw new JMeterError("Delimiter '"+ch+"' must not be alphanumeric or "+CSVSaveService.QUOTING_CHAR+".");
         }
 
-        if (!CharUtils.isAsciiPrintable(ch)){
+        if (ch != '\t' && !CharUtils.isAsciiPrintable(ch)){
             throw new JMeterError("Delimiter (code "+(int)ch+") must be printable.");
         }
 

Modified: jakarta/jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/changes.xml?rev=1030592&r1=1030591&r2=1030592&view=diff
==============================================================================
--- jakarta/jmeter/trunk/xdocs/changes.xml (original)
+++ jakarta/jmeter/trunk/xdocs/changes.xml Wed Nov  3 18:21:57 2010
@@ -105,6 +105,7 @@ To override the default local language f
 <li>Bug 49666 - CSV Header read as data after EOF</li>
 <li>Bug 45703 - Synchronizing Timer</li>
 <li>Bug 50088 - fix getAvgPageBytes in SamplingStatCalculator so it returns what it should</li>
+<li>Bug 50203 Cannot set property "jmeter.save.saveservice.default_delimiter=\t"</li>
 </ul>
 
 <!-- ==================================================== -->



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@jakarta.apache.org
For additional commands, e-mail: notifications-help@jakarta.apache.org