Re: Build failed in Jenkins: JMeter-trunk #6232

2017-07-25 Thread Philippe Mouawad
released > ERROR: Cannot find executable from the chosen Ant installation "Ant 1.9.7" > Archiving artifacts > -- Cordialement. Philippe Mouawad.

Re: svn commit: r1802896 - /jmeter/trunk/src/functions/org/apache/jmeter/functions/TimeShift.java

2017-07-25 Thread Philippe Mouawad
Thanks ! On Tue, Jul 25, 2017 at 11:43 AM, Maxime Chassagneux < maxime.chassagn...@gmail.com> wrote: > Hi Philippe, > > It's done :) > > Regards > > 2017-07-25 10:09 GMT+02:00 Philippe Mouawad : > > > Hi Maxime, > > Is it possible to add JUnits ? &

Re: svn commit: r1802864 - in /jmeter/trunk: src/protocol/http/org/apache/jmeter/protocol/http/control/ src/protocol/http/org/apache/jmeter/protocol/http/sampler/ test/src/org/apache/jmeter/protocol/h

2017-07-25 Thread Philippe Mouawad
Header, String value) >> { >> // no-op >> } >> + >> +private org.apache.jmeter.protocol.http.control.Header[] >> asHeaders(Map> headers) { >> +List result = >> new ArrayList<>(headers.size()); >> +for (Map.Entry> header: headers.entrySet()) >> { >> +// Java Implementation returns a null header for URL >> +if(header.getKey() != null) { >> +result.add(new org.apache.jmeter.protocol.htt >> p.control.Header( >> +header.getKey(), String.join(", ", >> header.getValue(; >> +} >> +} >> +return result.toArray(new org.apache.jmeter.protocol.htt >> p.control.Header[result.size()]); >> +} >> @Override >> protected void setRequestHeaders() { >> -this.cacheManager.setHeaders((HttpURLConnection)this.urlConnection, >> this.url); >> +this.cacheManager.setHeaders( >> +(HttpURLConnection)this.urlConnection, >> +asHeaders(urlConnection.getHeaderFields()), >> +this.url); >> } >> private static void checkProperty(Map> >> properties, String property, String expectedPropertyValue) { >> >> >> > -- Cordialement. Philippe Mouawad.

Re: svn commit: r1802896 - /jmeter/trunk/src/functions/org/apache/jmeter/functions/TimeShift.java

2017-07-25 Thread Philippe Mouawad
lues[0]).execute().trim(); > -dateToShift = ((CompoundVariable) values[1]).execute().trim(); > -amountToShift = ((CompoundVariable) values[2]).execute().trim(); > +dateToShiftCompound = (CompoundVariable) values[1]; > +amountToShiftCompound = (CompoundVariable) values[2]; > variableName = ((CompoundVariable) values[3]).execute().trim(); > > // Create the cache > > > -- Cordialement. Philippe Mouawad.

Re: Opportunities for cohesion improvement and refatoring.

2017-07-23 Thread Philippe Mouawad
/bz.apache.org/bugzilla/show_bug.cgi?id=61309 > https://bz.apache.org/bugzilla/show_bug.cgi?id=61308 > https://bz.apache.org/bugzilla/show_bug.cgi?id=61306 > -- Cordialement. Philippe Mouawad.

Re: MongoDB driver

2017-07-23 Thread Philippe Mouawad
on reporting as Emilian proposed. It would have also been great if the plugins manager was part of JMeter core and there was an Apache repository for Core plugins which would maybe make it possible to distribute a small bundle. But it's not the case. > > Andrey Pokhilko > > On 07/2

Re: svn commit: r1802731 - in /jmeter/trunk/src: core/org/apache/jmeter/gui/action/template/ core/org/apache/jmeter/save/ core/org/apache/jmeter/util/ protocol/jms/org/apache/jmeter/protocol/jms/sampl

2017-07-23 Thread Philippe Mouawad
On Sun, Jul 23, 2017 at 4:55 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 23.07.2017 um 16:53 schrieb Philippe Mouawad: > >> Hi Felix, >> >> Can we fix it without breaking existing plugins ? >> Let's start fixing it if you have

Re: UnmodifiableJMeterVariables implementation

2017-07-23 Thread Philippe Mouawad
Am 23.07.2017 um 16:48 schrieb Philippe Mouawad: > >> Hi Felix, >> I agree current behaviour is inconsistent. >> >> Can there be a case where we need >> >> unmodifiable.equals(vars) == true >> vars.equals(unmodifiable) == true >> > I hope not :) > &g

Re: svn commit: r1802731 - in /jmeter/trunk/src: core/org/apache/jmeter/gui/action/template/ core/org/apache/jmeter/save/ core/org/apache/jmeter/util/ protocol/jms/org/apache/jmeter/protocol/jms/sampl

2017-07-23 Thread Philippe Mouawad
ocol/jms >> /sampler/render/ObjectMessageRenderer.java Sun Jul 23 14:24:36 2017 >> @@ -29,6 +29,7 @@ import javax.xml.stream.XMLStreamExcepti >> import javax.xml.stream.XMLStreamReader; >> import org.apache.jmeter.protocol.jms.sampler.PublisherSampler; >> +import org.apache.jmeter.util.JMeterUtils; >> import com.github.benmanes.caffeine.cache.Cache; >> import com.thoughtworks.xstream.XStream; >> @@ -66,6 +67,7 @@ class ObjectMessageRenderer implements M >> Serializable readObject = null; >> try { >> XStream xstream = new XStream(); >> + JMeterUtils.setupXStreamSecurityPolicy(xstream); >> readObject = (Serializable) xstream.fromXML(xmlMessage, >> readObject); >> } catch (Exception e) { >> throw new IllegalStateException("Unable to load object >> instance from text", e); >> >> >> > -- Cordialement. Philippe Mouawad.

Re: UnmodifiableJMeterVariables implementation

2017-07-23 Thread Philippe Mouawad
ue > > and > > unmodifiable.hashCode() == vars.hashCode() > > I think we should have > > unmodifiable.equals(vars) != true > vars.equals(unmodifiable) != true > > and > > unmodifiable.hashCode() != vars.hashCode() > > What do you think? > > Felix > > > -- Cordialement. Philippe Mouawad.

Re: MongoDB driver

2017-07-23 Thread Philippe Mouawad
distribution > archive size, faster JMeter startup. Do we have estimations of > importance of those parts of JMeter? > > Andrey Pokhilko > > On 07/20/2017 10:15 PM, Philippe Mouawad wrote: > > Hello, > > The decision to deprecate was motivated by many reasons: > > &g

Re: Let's release a Minor version ?

2017-07-23 Thread Philippe Mouawad
> I can start the RC1 for 3.3 tomorrow or next weekend? Ok? > > I would be ok with a RC1 today (I just filled in the summary for the > release). > > I am not sure, if we should wait for the excellent work of Emi on the > undo/redo feature. > > Felix >

Re: JMeter GUI Undo/Redo

2017-07-22 Thread Philippe Mouawad
Hello, You should be aware of this bug as it might impact your work: - https://bz.apache.org/bugzilla/show_bug.cgi?id=51822 Regards On Sat, Jul 22, 2017 at 9:53 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello Emilian, > Thanks for your work which looks ve

Re: JMeter GUI Undo/Redo

2017-07-22 Thread Philippe Mouawad
compound edits where we could > merge/swallow edits. > > 1. https://github.com/emilianbold/jmeter/commit/ > ea9859995d1fb53905b720bc57a1ddf283b29ce8 > 2. https://github.com/emilianbold/jmeter/commit/ > 401221e9f6e480e43fcf51ee99458a0d7fdd661d > > --emi > -- Cordialement. Philippe Mouawad.

Re: Let's release a Minor version ?

2017-07-20 Thread Philippe Mouawad
Hello, If there is a volunteer to release , I think we have now some nice version 3.3 Regards On Tue, Jul 11, 2017 at 11:11 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > I think we need to wait for the commit of Felix PR related to Vary Header > and caching

Re: Replacing ClassFinder with ServiceLoader

2017-07-20 Thread Philippe Mouawad
docs/api/java/util/ > ServiceLoader.html > 4. > http://bits.netbeans.org/8.0/javadoc/org-openide-util- > lookup/org/openide/util/lookup/ServiceProvider.html > > --emi > -- Cordialement. Philippe Mouawad.

Re: MongoDB driver

2017-07-20 Thread Philippe Mouawad
;> 2.11.3 ) > >>>>> which is really old and doesn't work with all authentication > >>>>> > >>>>> By example : > >>>>> > >>>>> javax.script.ScriptException: java.lang.IllegalArgumentException: > >>>>> Unsupported authMechanism: SCRAM-SHA-1 > >>>>> > >>>>> > >>>>> As mongoDB is deprecated in JMeter, my question is : Should we keep > >> this > >>>>> librairie or update it to the lastest version ? > >>>>> > >>>>> Thanks for ur feedback. > >>>> > >> > > -- Cordialement. Philippe Mouawad.

Re: Netty Client Implementation for HTTP Sampler

2017-07-20 Thread Philippe Mouawad
gt; -- > > Isuru Perera > > about.me/chrishantha > > > > > > -- > Isuru Perera > about.me/chrishantha > -- Cordialement. Philippe Mouawad.

Re: JMeter priorities [WAS: Re: JMeter project analytics]

2017-07-20 Thread Philippe Mouawad
cky. > I am not sure it is that complex. Your experience with Netbeans which supports that would be very helpful > > > - fix caching of resources in already cached resources > > What is this about? > https://bz.apache.org/bugzilla/show_bug.cgi?id=53540 > --emi >

Re: JMeter project analytics

2017-07-20 Thread Philippe Mouawad
/static.googleusercontent.com/media/research.google.com/en//pubs/ > archive/42852.pdf > > --emi > > > On Thu, Jul 20, 2017 at 8:53 AM, Philippe Mouawad > wrote: > > Hello Emilian, > > In the past it was possible through Apache to know number of downloads. > > With mirrors it ap

Re: JMeter project analytics

2017-07-19 Thread Philippe Mouawad
> So, we should think about how we could implement something like this > while respecting the Apache rules surrounding user data. > > --emi > -- Cordialement. Philippe Mouawad.

Re: svn commit: r1802063 - in /jmeter/trunk: src/components/org/apache/jmeter/modifiers/ src/core/org/apache/jmeter/engine/util/ src/core/org/apache/jmeter/resources/ xdocs/ xdocs/usermanual/

2017-07-16 Thread Philippe Mouawad
ix Schumacher > > wrote: > > Am 16.07.2017 um 17:05 schrieb Philippe Mouawad: > >> > >> Hi Felix, > >> This function was just an alias for the other one __StringFromFile. > >> The replacement is just to add a '_' as all other functions. > &g

Re: svn commit: r1802063 - in /jmeter/trunk: src/components/org/apache/jmeter/modifiers/ src/core/org/apache/jmeter/engine/util/ src/core/org/apache/jmeter/resources/ xdocs/ xdocs/usermanual/

2017-07-16 Thread Philippe Mouawad
n is >> >> >> CSV Data Set Config is used to read lines from a file, and split >> them into variables. >> - It is easier to use than the __CSVRead() and >> _StringFromFile() functions. >> +It is easier to use than the __CSVRead() and >> __StringFromFile() functions. >> It is well suited to handling large numbers of variables, and is >> also useful for testing with >> "random" and unique values. >> Generating unique random values at run-time is expensive in >> terms of CPU and memory, so just create the data >> >> Modified: jmeter/trunk/xdocs/usermanual/functions.xml >> URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/f >> unctions.xml?rev=1802063&r1=1802062&r2=1802063&view=diff >> >> == >> --- jmeter/trunk/xdocs/usermanual/functions.xml (original) >> +++ jmeter/trunk/xdocs/usermanual/functions.xml Sun Jul 16 14:38:29 2017 >> @@ -432,8 +432,6 @@ be in the interval -2147483648 to 214748 >> >> >> - >> - >> >> >> @@ -520,8 +518,8 @@ Here are a few format strings and the co >> the sequence number is interpreted as a loop count, and the file >> will be used at most "end" times. >> In this case the filename is not formatted. >> >> -${_StringFromFile(PIN#'.'DAT,,1,2)} - reads >> PIN1.DAT, PIN2.DAT >> -${_StringFromFile(PIN.DAT,,,2)} - reads >> PIN.DAT twice >> +${__StringFromFile(PIN#'.'DAT,,1,2)} - reads >> PIN1.DAT, PIN2.DAT >> +${__StringFromFile(PIN.DAT,,,2)} - reads >> PIN.DAT twice >> Note that the "." in PIN.DAT above should >> not be quoted. >> In this case the start number is omitted, so the file name is used >> exactly as is. >> >> @@ -697,7 +695,7 @@ This leads to creation of match number v >> >> >> -The CSVRead function returns a string from a CSV file >> (c.f. StringFromFile) >> +The CSVRead function returns a string from a CSV file >> (c.f. StringFromFile) >> NOTE: JMeter supports multiple file names. >> >> In most cases, the newer >> >> >> > -- Cordialement. Philippe Mouawad.

Re: Checking values of properties more thoroughly

2017-07-16 Thread Philippe Mouawad
", > 5 * 1000, Validator::notNegative); > > or > > private static int TIMEOUT = Validator.notNegative(JMeterUt > ils.getPropDefault("some.timeout", 5 * 1000), "some.timeout must not be > negative"); > > At the moment I prefer the first variants. > > What do you think? > > Felix > > -- Cordialement. Philippe Mouawad.

Re: Build failed in Jenkins: JMeter Windows #663

2017-07-12 Thread Philippe Mouawad
You're the best ! On Mon, Jul 10, 2017 at 9:13 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 08.07.2017 um 11:05 schrieb Philippe Mouawad: > >> Hi Felix, >> There is something weird, as the request has a header to get only a range >> of

Re: Let's release a Minor version ?

2017-07-11 Thread Philippe Mouawad
> +1 to release > > > > Antonio > > > > 2017-06-02 21:05 GMT+02:00 Philippe Mouawad >: > > > >> Hi Antonio, > >> Feel free to answer my mail. > >> > >> I don't think there is any emergency on this matter anyway. > >>

Re: Mavenization [WAS: Re: JMeter project structure and IDEs support]

2017-07-11 Thread Philippe Mouawad
e9 > > > > I assume the same will be when I move the sources too. > > > > --emi > > > > > > On Sat, Jul 8, 2017 at 12:22 PM, Emilian Bold > wrote: > >> Could we use this opportunity to remove the junit/test.jar sample, > >> related Mav

Re: Fallback to core JAR commands in ActionRouter

2017-07-11 Thread Philippe Mouawad
general improvement, regardless of > >> IDE support and mavenization. > > If this patch helps, I am +1 > > > > Thanks for your work, > > Felix > >> > >> --emi > > > > > > -- Cordialement. Philippe Mouawad.

Re: Build failed in Jenkins: JMeter Windows #663

2017-07-08 Thread Philippe Mouawad
> > > > > > >rm="Partial Content" tn="Thread Group 1-1" dt="text" by="7360"> > > > >RA_206 > >false > > false > > > > > >RA > >false > >false > > > > > >RA_PartialContent > >false > >false > > > > > >JSA-CheckResponseTimeHigherThan5s > >false > >false > > > > > > > > > >RA_206 > >false > >false > > > > > >RA > >false > >false > > > > > >RA_PartialContent > >false > >false > > > > > >JSA-CheckResponseTimeHigherThan5s > >false > >false > > > > > > > > > > > ><https://builds.apache.org/job/JMeter%20Windows/ws/trunk\ > bin\SlowCharsFeature_HttpClient4.xml> > > > > > > > > >rm="Partial Content" tn="Thread Group 1-1" dt="text" by="7359"> > > > >RA_206 > >false > >false > > > > > >RA > >false > >false > > > > > >RA_PartialContent > >false > >false > > > > > >JSA-CheckResponseTimeHigherThan5s > >false > >false > > > > > > > > > >RA_206 > >false > >false > > > > > >RA > >false > >false > > > > > >RA_PartialContent > >false > >false > > > > > >JSA-CheckResponseTimeHigherThan5s > >false > >false > > > > > > > > > > > >Total time: 6 minutes 40 seconds > >Build step 'Invoke Ant' marked build as failure > -- Cordialement. Philippe Mouawad.

Re: JMeter project structure and IDEs support

2017-07-08 Thread Philippe Mouawad
e to have on the > website but why have them as public Maven artifacts? > > --emi > > > On Sat, Jul 8, 2017 at 10:07 AM, Philippe Mouawad > wrote: > > On Sat, Jul 8, 2017 at 9:05 AM, Emilian Bold > wrote: > > > >> Q1: Maven artifact and group IDs? > &

Re: JMeter project structure and IDEs support

2017-07-08 Thread Philippe Mouawad
#x27;ve did mavenization / code relayout for pgjdbc, and I do release > > pgjdbc, so it (me speaking of mavenization) is not something theoretical. > > > > PPPS. I've not used Gradle extensively. So, even if I would try adding > > Gradle build scripts, I would like someone to check those for the sanity. > > > > Vladimir > -- Cordialement. Philippe Mouawad.

Re: JMeter project structure and IDEs support

2017-07-07 Thread Philippe Mouawad
to run the project, but I'm creating a single JAR for all > the > > > >> src/ submodules instead a multiple JARs. > > > >> > > > >> It might be a silly question, but have you considered using Maven or > > > >> Gradle or some other build system that would be sub-project aware? > > > >> > > > >> This would more easily allow the project to be loaded from multiple > > > IDEs. > > > >> > > > >> It would also allow a segmentation of dependency JARs per submodule. > > > >> > > > >> If dev@ is not the proper place for this I can resend the email to > > > >> some other mailing list. > > > >> > > > >> --emi > > > >> > > > > > > -- Cordialement. Philippe Mouawad.

Re: JMeter project structure and IDEs support

2017-07-07 Thread Philippe Mouawad
. > >> > >> It would also allow a segmentation of dependency JARs per submodule. > >> > >> If dev@ is not the proper place for this I can resend the email to > >> some other mailing list. > >> > >> --emi > >> > -- Cordialement. Philippe Mouawad.

Re: [ JMETER ISSUE #53277]

2017-07-06 Thread Philippe Mouawad
> > Thank you. > -- Cordialement. Philippe Mouawad. Ubik-Ingénierie UBIK LOAD PACK Web Site <http://www.ubikloadpack.com/> UBIK LOAD PACK on TWITTER <https://twitter.com/ubikloadpack>

Re: svn commit: r1797920 - in /jmeter/trunk: src/core/org/apache/jmeter/engine/PreCompiler.java src/core/org/apache/jmeter/threads/JMeterContext.java src/core/org/apache/jmeter/threads/JMeterContextSe

2017-06-11 Thread Philippe Mouawad
nce. > > May be it's possible to improve this patch, rather than revert it ? > > 2017-06-09 7:10 GMT+02:00 Philippe Mouawad : > > > Hello Maxime, > > I am not sure this commit is a good idea. > > JMeterVariables are usually available per Thread and each VU (Thread

Re: svn commit: r1797920 - in /jmeter/trunk: src/core/org/apache/jmeter/engine/PreCompiler.java src/core/org/apache/jmeter/threads/JMeterContext.java src/core/org/apache/jmeter/threads/JMeterContextSe

2017-06-08 Thread Philippe Mouawad
= > == > --- jmeter/trunk/xdocs/changes.xml [utf-8] (original) > +++ jmeter/trunk/xdocs/changes.xml [utf-8] Wed Jun 7 13:26:36 2017 > @@ -195,6 +195,7 @@ Summary > 57958Fix transaction sample not generated if thread > stops/restarts. Implemented by Artem Fedorov (artem at blazemeter.com) > and contributed by BlazeMeter Ltd. > 61050Handle uninitialized RessourceBundle more > gracefully, when calling JMeterUtils#getResString. > 61100Invalid GC Log Filename on Windows > +57962Allow to use variables ( from User Defined > Variables only ) in all listeners in slave mode > > > > > > -- Cordialement. Philippe Mouawad.

Re: svn commit: r1798048 - in /jmeter/trunk/src/components/org/apache/jmeter/visualizers/backend: ErrorMetric.java SamplerMetric.java influxdb/InfluxdbBackendListenerClient.java

2017-06-08 Thread Philippe Mouawad
) in the extra folder of JMeter. > But I don't understand what you want with a test plan, as the Backend > Listener work only with a Influxdb server. > > 2017-06-08 13:59 GMT+02:00 Philippe Mouawad >: > > > Hello Maxime, > > To simplify testing would it be possible t

Re: svn commit: r1798048 - in /jmeter/trunk/src/components/org/apache/jmeter/visualizers/backend: ErrorMetric.java SamplerMetric.java influxdb/InfluxdbBackendListenerClient.java

2017-06-08 Thread Philippe Mouawad
.getResponseCode(), > +error.getResponseMessage(), count)); > } > > +private void addErrorMetric(String transaction, String responseCode, > String responseMessage, long count) { > + if (count > 0) { > +StringBuilder tag = new StringBuilder(70); > +tag.append(TAG_APPLICATION).append(application); > +tag.append(TAG_TRANSACTION).append(transaction); > +tag.append(TAG_RESPONSE_CODE).append( > AbstractInfluxdbMetricsSender.tagToStringValue(responseCode)); > +tag.append(TAG_RESPONSE_MESSAGE).append( > AbstractInfluxdbMetricsSender.tagToStringValue(responseMessage)); > + > +StringBuilder field = new StringBuilder(30); > +field.append(METRIC_COUNT).append(count); > +influxdbMetricsManager.addMetric(measurement, > tag.toString(), field.toString()); > +} > +} > > private void addMetric(String transaction, int count, boolean > includeResponseCode, > String statut, double mean, double minTime, double maxTime, > > > -- Cordialement. Philippe Mouawad.

Re: Questions about DataSourceElement

2017-06-05 Thread Philippe Mouawad
Hi, Yes, but it confirms what you wrote on static one, you're right. Regards On Mon, Jun 5, 2017 at 9:30 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 05.06.2017 um 21:25 schrieb Philippe Mouawad: > >> http://www.pellegrino.link/2015/08/22/string

Re: Questions about DataSourceElement

2017-06-05 Thread Philippe Mouawad
r was not clever enough to use a > StringBuilder (indeed before Java 5 it did not exist). > > > b) In the inner class DataSourceComponentImpl there is some (really > minor) > > code duplication in getConnectionInfo and getConnection. But my real > concern > > is, that getConnection checks for a null BasicDataSource, while > > getConnectionInfo doesn't. > > > > What is the logic behind this? > > > > Regards, > > > > Felix > > > -- Cordialement. Philippe Mouawad.

Re: Questions about DataSourceElement

2017-06-05 Thread Philippe Mouawad
, while > getConnectionInfo doesn't. > > What is the logic behind this? A bug :) > > Regards, > > Felix > > -- Cordialement. Philippe Mouawad.

Re: [GitHub] jmeter issue #296: Bug 61078 - Percentile calculation error

2017-06-03 Thread Philippe Mouawad
the true value that is important to compare and report as > a test result. > Will you submit a PR for that ? Before or after release of 3.3 ? Thanks > > Vladimir > -- Cordialement. Philippe Mouawad.

Re: MultipartEntityBuilder and Charset US-ASCII

2017-06-03 Thread Philippe Mouawad
Hello, Any answers on those questions ? Thank you On Sun, May 28, 2017 at 12:47 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hi Oleg, > From the 3 questions I asked, to which one are you answering ? > The first ? > If possible, can you point the paragraph ? &

Re: Deprecate / drop Graph listener

2017-06-02 Thread Philippe Mouawad
t; > Pe 2 iun. 2017, la 01:07, Andrey Pokhilko a scris: > > > > > +1 > > > > > > Andrey Pokhilko > > > > > >> On 02.06.2017 01:01, Philippe Mouawad wrote: > > >> Hello, > > >> What do you think of dropping this old list

Re: Let's release a Minor version ?

2017-06-02 Thread Philippe Mouawad
ut I am OK to release a new minor version after > > Antonio > > 2017-05-29 23:03 GMT+02:00 Philippe Mouawad : > > > Hello, > > I think we should release a new minor version of JMeter for the following > > reasons: > > > >- There a fixes that need to b

Deprecate / drop Graph listener

2017-06-01 Thread Philippe Mouawad
: - https://twitter.com/fnicollet/status/869689600758996992 Regards Philippe -- Cordialement. Philippe Mouawad. Ubik-Ingénierie UBIK LOAD PACK Web Site <http://www.ubikloadpack.com/> UBIK LOAD PACK on TWITTER <https://twitter.com/ubikloadpack>

Re: JMeter version numbering

2017-05-29 Thread Philippe Mouawad
On Monday, May 29, 2017, sebb wrote: > On 29 May 2017 at 21:57, Philippe Mouawad > wrote: > > Hello, > > I wonder if our versioning strategy is correct if we are supposed to > follow > > : > > > >- http://semver.org/ > > > > No, we do no

Let's release a Minor version ?

2017-05-29 Thread Philippe Mouawad
Hello, I think we should release a new minor version of JMeter for the following reasons: - There a fixes that need to be released early (InfluxDB, Search/Replace,Port field, report...) - There is a nasty bug in Caffeine 2.5.0 which may affect CSS parsing - There are nice little featur

JMeter version numbering

2017-05-29 Thread Philippe Mouawad
sions. Regards -- Cordialement. Philippe Mouawad.

Re: svn commit: r1796492 - in /jmeter/trunk/bin/testfiles: HTMLParserTestFile_2.csv HTMLParserTestFile_2.xml

2017-05-28 Thread Philippe Mouawad
No problem. You don't make omelets without breaking eggs :) Regards On Sunday, May 28, 2017, Felix Schumacher wrote: > Thanks for fixing this. > > I really should have run the tests. > > Sorry, > Felix > > > Am 28. Mai 2017 16:00:52 MESZ schrieb pmoua...@apache.org > : >> >> Author: pmouawad >>

Re: svn commit: r1793271 - /jmeter/trunk/test/src/org/apache/jmeter/engine/util/TestValueReplacer.java

2017-05-28 Thread Philippe Mouawad
Thanks will do. I'd be more than happy if you could also answer other mails I sent related to features, future of JMeter, percentiles/median ... Regards On Sun, May 28, 2017 at 4:02 PM, sebb wrote: > On 23 May 2017 at 11:03, Philippe Mouawad > wrote: > > Hi Felix, > >

Re: MultipartEntityBuilder and Charset US-ASCII

2017-05-28 Thread Philippe Mouawad
Hi Oleg, >From the 3 questions I asked, to which one are you answering ? The first ? If possible, can you point the paragraph ? Thanks On Sunday, May 28, 2017, Oleg Kalnichevski wrote: > On Sat, 2017-05-20 at 16:31 +0200, Philippe Mouawad wrote: > > Hello, > > Any thoughts on

Re: [GitHub] jmeter issue #296: Bug 61078 - Percentile calculation error

2017-05-28 Thread Philippe Mouawad
iles (and therefore the > median). > > I wonder if we should change our implementation at all. > > Felix > > >> Thanks >> >> >> --- >> If your project is set up for it, you can reply to this email and have >> your >> reply appear on GitHub as well. If your project does not have this feature >> enabled and wishes so, or if the feature is enabled but not working, >> please >> contact infrastructure at infrastruct...@apache.org or file a JIRA ticket >> with INFRA. >> --- >> > -- Cordialement. Philippe Mouawad.

Re: svn commit: r1793271 - /jmeter/trunk/test/src/org/apache/jmeter/engine/util/TestValueReplacer.java

2017-05-23 Thread Philippe Mouawad
a name, that > is a bit more descriptive. > I agree, but I don't know how to name it. > > Regards, > Felix > > > +replacer.reverseReplace(element, true); >> +String replacedDomain = element.getPropertyAsString("mail"); >> +assertEquals("${firstMatch}%40005", replacedDomain); >> + >> +element.setProperty(new StringProperty("mail", "toto@005")); >> +replacer.reverseReplace(element, true); >> +replacedDomain = element.getPropertyAsString("mail"); >> +assertEquals("${firstMatch}@${secondMatch}", >> replacedDomain); >> +} >> >> @Test >> public void testReplace() throws Exception { >> > -- Cordialement. Philippe Mouawad.

Re: JMeter HTTP/2 support

2017-05-21 Thread Philippe Mouawad
tain confidential and/or privileged >> information. Any unauthorized review, use, disclosure or distribution is >> prohibited. If you have received this e-mail in error, please contact the >> sender by replying to this email, and destroy all copies of the original >> message and any material included with this email.*/ >> > > > -- Cordialement. Philippe Mouawad.

Re: Identify somehow public API

2017-05-20 Thread Philippe Mouawad
and it's good that we caught them, not our users... > > Andrey Pokhilko > > On 03.04.2017 22:17, Philippe Mouawad wrote: > > Hello Andrey, > > My idea is just to identify "Public API" for which backward compatibility > > is strict: > > > &g

Re: Issue with Embedded Resources download I don't understand

2017-05-20 Thread Philippe Mouawad
Hello, Wrong . it was not , new bug was opened. Regards On Friday, April 7, 2017, Philippe Mouawad wrote: > Hello, > Just for follow up, I was able to perform a new test with last nightly > build, I confirm issue is fixed. > > Regards > > On Tue, Mar 28, 2017 at 12:16

Re: Brotli compression

2017-05-20 Thread Philippe Mouawad
Hi, For info, done and release in last commons-compress. Regards On Sunday, April 30, 2017, Gary Gregory wrote: > Should at least just bridge to the decompression code from Google for now? > > Gary > > On Thu, Apr 13, 2017 at 5:48 AM, Philippe Mouawad < > philippe.moua

Re: HTTP Request : Behaviour of PUT

2017-05-20 Thread Philippe Mouawad
Hi, New ping. Thanks for any feedback On Wednesday, April 19, 2017, Philippe Mouawad wrote: > Hello, > Any thoughts on that ? > Thanks > > On Sat, Mar 18, 2017 at 2:00 PM, Philippe Mouawad < > philippe.moua...@gmail.com > > wrote: > >> Hello, >>

Re: MultipartEntityBuilder and Charset US-ASCII

2017-05-20 Thread Philippe Mouawad
Hello, Any thoughts on that ? Thx On Wednesday, April 19, 2017, Philippe Mouawad wrote: > Hello, > Anybody has an idea about that ? > Thanks > > On Mon, Apr 17, 2017 at 10:50 PM, Philippe Mouawad < > philippe.moua...@gmail.com > > wrote: > >> Hello, >

Re: Differences between HC4 and JAVA Impl

2017-05-20 Thread Philippe Mouawad
Hi, New ping. Thanks for any feedback On Wednesday, April 19, 2017, Philippe Mouawad wrote: > Hello, > Any idea on this ? > Thanks > > On Tue, Feb 28, 2017 at 11:08 PM, Philippe Mouawad < > philippe.moua...@gmail.com > > wrote: > >> Hello, >> Working

Re: Use of https://github.com/HdrHistogram/HdrHistogram

2017-05-20 Thread Philippe Mouawad
Hello, Any other thoughts ? Thanks On Saturday, May 6, 2017, Antonio Gomes Rodrigues wrote: > +1 > > 2017-05-06 15:57 GMT+02:00 Maxime Chassagneux < > maxime.chassagn...@gmail.com > > : > > > +1 : lgtm > > > > 2017-05-06 15:41 GMT+02:00 Philippe

Re: German Translation

2017-05-17 Thread Philippe Mouawad
HRB-Nr./Commercial Register No.: 736635 > Geschäftsführung/Management: Tobias Liepe (Vorsitzender/Chairman), Bettina > Grimm > > Ein Unternehmen der Daimler TSS GmbH/A Daimler TSS GmbH Company > > > If you are not the addressee, please inform us immediately that you have > recei

Re: [GitHub] jmeter issue #296: Bug 61078 - Percentile calculation error

2017-05-09 Thread Philippe Mouawad
onder if we should change our implementation at all. > > Felix > > > >> Thanks >> >> >> --- >> If your project is set up for it, you can reply to this email and have >> your >> reply appear on GitHub as well. If your project does not have this feature >> enabled and wishes so, or if the feature is enabled but not working, >> please >> contact infrastructure at infrastruct...@apache.org or file a JIRA ticket >> with INFRA. >> --- >> > -- Cordialement. Philippe Mouawad.

Use of https://github.com/HdrHistogram/HdrHistogram

2017-05-06 Thread Philippe Mouawad
StatCalculator, HdrHistogram - Second step : Replace DescriptiveStatistics by HdrHistogram Benefits: - Uniform computing accross JMeter - Better performances Are you ok with this approach ? Thanks -- Regards. Philippe Mouawad. Ubik-Ingénierie

Re: svn commit: r1793304 - /jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/ClassFinder.java

2017-05-01 Thread Philippe Mouawad
Thanks Felix, I didn't notice this :-) On Mon, May 1, 2017 at 1:49 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 01.05.2017 um 13:18 schrieb Philippe Mouawad: > >> Hi Felix, >> Can you point me to what was wrong, I am blind this morning :-)

Re: svn commit: r1793304 - /jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/ClassFinder.java

2017-05-01 Thread Philippe Mouawad
Hi Felix, Can you point me to what was wrong, I am blind this morning :-) Thanks On Mon, May 1, 2017 at 1:06 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > > > Am 1. Mai 2017 13:03:00 MESZ schrieb Philippe Mouawad < > philippe.moua...@gmail.com>: >

Re: svn commit: r1793304 - /jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/ClassFinder.java

2017-05-01 Thread Philippe Mouawad
he loop. I don't understand clearly why tests broke before. > > Scratching my head, > Felix > > > found = true; > > log.debug("Adding {}", classpathElement); > > listPaths.add(classpathElement); > >@@ -470,4 +472,5 @@ public final class ClassFinder { > > } > > } > > } > >+ > > } > -- Cordialement. Philippe Mouawad.

Re: MultiPart/form-data : Supporting JSON body + file upload

2017-04-30 Thread Philippe Mouawad
rote: > Am 19.04.2017 um 22:28 schrieb Philippe Mouawad: > >> Hello, >> Any thoughts on this ? >> > No real ideas, sorry. But I think it would be really helpful, if we could > specify the content-type directly. At the moment we have to use a header > manager for this,

Re: Drop HTMLAssertion

2017-04-30 Thread Philippe Mouawad
Hi Felix, Thanks for your answer. I never use this feature neither. I raised this subject while reviewing code. Regards On Sun, Apr 30, 2017 at 12:28 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 19.04.2017 um 22:32 schrieb Philippe Mouawad: > >> He

JMeter docs on stackoverflow

2017-04-23 Thread Philippe Mouawad
Hello, For your information, Stackoverflow has started a new Docs feature and there are already some docs: - http://stackoverflow.com/documentation/jmeter/topics -- Regards. Philippe

Re: svn commit: r1792284 - /jmeter/branches/docs-3.2/xdocs/changes.xml

2017-04-22 Thread Philippe Mouawad
rties >> 60830Timestamps in CSV file could be corrupted due >> to sharing a SimpleDateFormatter across threads >> +60842HTTP Request : Embedded resources doesn't strip >> newline when an html tag spans more than a single line. >> >> >> >> >> >> > -- Cordialement. Philippe Mouawad.

Re: Doc site has outdated information

2017-04-22 Thread Philippe Mouawad
The changes must be done on the docs branch (and trunk too if needed): > https://svn.apache.org/repos/asf/jmeter/branches/docs-3.2/ > > > > On 20/04/2017 19:42, Philippe Mouawad wrote: > >> Hello Felix >> My answers inline. >> Regards >> >>

Re: Doc site has outdated information

2017-04-20 Thread Philippe Mouawad
Hello Felix My answers inline. Regards On Thu, Apr 20, 2017 at 8:39 PM, Felix Schumacher < felix.schumac...@internetallee.de> wrote: > Am 19.04.2017 um 22:24 schrieb Philippe Mouawad: > >> Hello, >> Do you think we should republish doc or not ? >> > yes, I thin

Re: Drop HTMLAssertion

2017-04-19 Thread Philippe Mouawad
Hello Felix, What shall we do with this ? Will you be committing your patch ? Thanks On Sun, Feb 26, 2017 at 1:28 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > As Felix has found a way to do it with reasonable piece of work, I change > my opinion to keep it

Re: Differences between HC4 and JAVA Impl

2017-04-19 Thread Philippe Mouawad
Hello, Any idea on this ? Thanks On Tue, Feb 28, 2017 at 11:08 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > Working yesterday on TEST_HTTP.jmx to add coverage for Java Impl, I > noticed the following additional difference. > > Java Impl is not a

Re: MultiPart/form-data : Supporting JSON body + file upload

2017-04-19 Thread Philippe Mouawad
Hello, Any thoughts on this ? Thanks On Fri, Mar 3, 2017 at 8:08 PM, Philippe Mouawad wrote: > Hello, > Any idea on this one ? > Thanks > > On Wed, Mar 1, 2017 at 10:36 PM, Philippe Mouawad < > philippe.moua...@gmail.com> wrote: > >> Hello, >> Recent JS

Re: BUG 60830 : Timestamps in CSV file get corrupted due to sharing a SimpleDateFormatter across threads.

2017-04-19 Thread Philippe Mouawad
For follow up, Issue was fixed : https://bz.apache.org/bugzilla/show_bug.cgi?id=60830 And is part of 3.2 Regards On Wed, Mar 8, 2017 at 9:43 PM, Philippe Mouawad wrote: > Hello, > We had a report on corruption of CSV output in Date output. > I implemented a patch but I'd like s

Re: HTTP Request : Behaviour of PUT

2017-04-19 Thread Philippe Mouawad
Hello, Any thoughts on that ? Thanks On Sat, Mar 18, 2017 at 2:00 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > For follow up, discussion was related to: > https://bz.apache.org/bugzilla/show_bug.cgi?id=60782 > > Regards > > On Tue, Feb 28, 2

Re: Doc site has outdated information

2017-04-19 Thread Philippe Mouawad
Hello, Do you think we should republish doc or not ? We could maybe improve also doc for : https://bz.apache.org/bugzilla/show_bug.cgi?id=61000 Thanks On Sun, Apr 16, 2017 at 4:14 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > A twitter user has reported t

Re: MultipartEntityBuilder and Charset US-ASCII

2017-04-19 Thread Philippe Mouawad
Hello, Anybody has an idea about that ? Thanks On Mon, Apr 17, 2017 at 10:50 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > At JMeter we have a bug report (https://bz.apache.org/ > bugzilla/show_bug.cgi?id=60800) related to Multipart Form POST request >

MultipartEntityBuilder and Charset US-ASCII

2017-04-17 Thread Philippe Mouawad
Hello, At JMeter we have a bug report ( https://bz.apache.org/bugzilla/show_bug.cgi?id=60800) related to Multipart Form POST request A user reports that he has an issue with a request created by JMeter due to the presence in Request Headers of "charset=US-ASCII" at end of boundary in Content-Type.

Doc site has outdated information

2017-04-16 Thread Philippe Mouawad
Hello, A twitter user has reported that this url: http://jmeter.apache.org/usermanual/build-monitor-test-plan.html Contains invalid images. This page should be removed. Regards -- Cordialement. Philippe Mouawad.

Re: Brotli compression

2017-04-13 Thread Philippe Mouawad
ava implementation here https://github.com/meteogroup/jbrotli > but > it is not 100% Java. > > Gary > > On Tue, Nov 15, 2016 at 11:33 PM, Philippe Mouawad < > philippe.moua...@gmail.com > wrote: > > > Hi Gary, > > I created : > > https://issues.

Re: [VOTE] Release JMeter 3.2 RC3

2017-04-13 Thread Philippe Mouawad
k and vote are welcome. > > > >[x] +1 I support this release > >[ ] +0 I am OK with this release > >[ ] -0 OK, but > >[ ] -1 I do not support this release (please indicate why) > > Felix > > > > >The vote will remain open for at least 72 hours. > > > >The PMC members please indicate the mention "(binding)" with your vote. > > > > > >Note: If the vote passes, the intention is to release the archive files > >and rename the RC tag as the release tag. > > > >Thanks in advance! > > > >Milamber > -- Cordialement. Philippe Mouawad.

Re: [VOTE] Release JMeter 3.2 RC3

2017-04-10 Thread Philippe Mouawad
pport this release (please indicate why) > > The vote will remain open for at least 72 hours. > > The PMC members please indicate the mention "(binding)" with your vote. > > > Note: If the vote passes, the intention is to release the archive files > and rename the RC tag as the release tag. > > Thanks in advance! > > Milamber > > > > > > > -- Cordialement. Philippe Mouawad.

Re: svn commit: r1790839 - /jmeter/trunk/src/core/org/apache/jmeter/threads/ThreadGroup.java

2017-04-10 Thread Philippe Mouawad
notifier, threadGroupTree, engine, > numThreads, context, now, delay); > JMeterContextService.addTotalThreads( 1 ); > log.info("Started new thread in group {}", groupNumber); > > > -- Cordialement. Philippe Mouawad.

Re: Rename "request_sent_retry_enabled" to retry_all_methods ?

2017-04-08 Thread Philippe Mouawad
gt; On 08.04.2017 13:32, sebb wrote: > > On 7 April 2017 at 17:45, Philippe Mouawad > wrote: > >> On Fri, Apr 7, 2017 at 6:39 PM, sebb > > wrote: > >> > >>> On 7 April 2017 at 17:35, Philippe Mouawad > > >>> wrote: > >>>> On

Re: Issue with Embedded Resources download I don't understand

2017-04-07 Thread Philippe Mouawad
Hello, Just for follow up, I was able to perform a new test with last nightly build, I confirm issue is fixed. Regards On Tue, Mar 28, 2017 at 12:16 PM, Philippe Mouawad < philippe.moua...@gmail.com> wrote: > Hello, > I think it is fixed now: > >- https://bz.apache.org/bug

Re: Rename "request_sent_retry_enabled" to retry_all_methods ?

2017-04-07 Thread Philippe Mouawad
On Fri, Apr 7, 2017 at 6:39 PM, sebb wrote: > On 7 April 2017 at 17:35, Philippe Mouawad > wrote: > > On Fri, Apr 7, 2017 at 6:30 PM, sebb wrote: > > > >> On 7 April 2017 at 17:27, Philippe Mouawad > >> wrote: > >> > On Fri, Apr 7, 2017 at

Re: Rename "request_sent_retry_enabled" to retry_all_methods ?

2017-04-07 Thread Philippe Mouawad
On Fri, Apr 7, 2017 at 6:30 PM, sebb wrote: > On 7 April 2017 at 17:27, Philippe Mouawad > wrote: > > On Fri, Apr 7, 2017 at 10:44 AM, sebb wrote: > > > >> If a user property is renamed, it may break some tests. > >> > > It was introduced only few day

Re: Rename "request_sent_retry_enabled" to retry_all_methods ?

2017-04-07 Thread Philippe Mouawad
ld alias should > generate a warning log message. > > On 6 April 2017 at 20:44, Philippe Mouawad > wrote: > > Hello, > > As per discussion "JMeter 3.1 httpclient4.retrycount does not work" on > user > > mailing list, > > do you think we should rename

Rename "request_sent_retry_enabled" to retry_all_methods ?

2017-04-06 Thread Philippe Mouawad
Hello, As per discussion "JMeter 3.1 httpclient4.retrycount does not work" on user mailing list, do you think we should rename this property ? Thanks Regards

Re: svn commit: r1790429 - in /jmeter/trunk: docs/ docs/usermanual/ src/core/org/apache/jmeter/resources/ test/src/org/apache/jmeter/functions/ xdocs/ xdocs/usermanual/

2017-04-06 Thread Philippe Mouawad
runk/xdocs/usermanual/ > functions.xml?rev=1790429&r1=1790428&r2=1790429&view=diff > > == > --- jmeter/trunk/xdocs/usermanual/functions.xml (original) > +++ jmeter/trunk/xdocs/usermanual/functions.xml Thu Apr 6 17:04:19 2017 > @@ -143,6 +143,7 @@ Alternatively, just use / i > String href="#__unescape">unescapeProcess > strings containing Java escapes (e.g. \n & \t)2.3.3 > String > unescapeHtmlDecode HTML-encoded strings2.3.3 tr> > String href="#__escapeHtml">escapeHtmlEncode > strings using HTML encoding2.3.3 > +String href="#__escapeXml">escapeXmlEncode > strings using XMl encoding3.2 > String href="#__urldecode">urldecodeDecode > a application/x-www-form-urlencoded string2.10 > String href="#__urlencode">urlencodeEncode > a string to a application/x-www-form-urlencoded > string2.10 > String > TestPlanNameReturn name of current test > plan2.6 > @@ -1475,6 +1476,28 @@ A reference name - refName > > > > + > + > + > + > +Function which escapes the characters in a String using XML 1.0 entities. > + > + > +For example,"bread" & 'butter' > +becomes: > +&quot;bread&quot; &amp; &apos;butter&apos; code>. > + > + > +Uses StringEscapeUtils#escapeXml10(String) from Commons > Lang. > + > + > + > + > + > +The string to be escaped. > + > + > + > > > > > > -- Cordialement. Philippe Mouawad.

Re: [VOTE] Release JMeter 3.2 RC2

2017-04-03 Thread Philippe Mouawad
t; Hi, >> >> Like Philippe >> >> [X] I do not support this release >> >> In my opinion, we need to deprecate this API in 3.2 release and remove it >> in 3.3 >> >> Antonio >> >> 2017-04-03 7:40 GMT+02:00 Philippe Mouawad > >: >

Re: Identify somehow public API

2017-04-03 Thread Philippe Mouawad
ere much less than > loss of extension potential. > > Andrey Pokhilko > > On 03.04.2017 08:44, Philippe Mouawad wrote: > > Hello, > > I think it would be interesting to identify in code public API for users > > that would manipulate JMeter code through custom code (Groovy /

Identify somehow public API

2017-04-02 Thread Philippe Mouawad
fast and safe way. I didn't find any existing tag to do that, maybe we could create a javadoc or annotation to do that. We could then have it in javadocs and run backward cmpat checker. Thoughts ? Regards Philippe -- Cordialement. Philippe Mouawad.

Re: [VOTE] Release JMeter 3.2 RC2

2017-04-02 Thread Philippe Mouawad
Hello, Thanks Milamber for your work on RM for this. Due to issue reported my vote is: [X] I do not support this release I can fix issue if ok for you to commit in trunk. Regards On Sunday, April 2, 2017, Philippe Mouawad wrote: > Hello, > I am to blame for this issue, sorry !

Re: [VOTE] Release JMeter 3.2 RC2

2017-04-02 Thread Philippe Mouawad
src tgz/zip >>> IMHO not a showstopper, fixed in r1789871 after RC2. >>> Note: the missing file breaks the ability to run >>> "ant distribution" from a src tgz/zip. >>> I think this must have already been the case for >>> 3.1 (untested). >>> - some files with name "*cp1252*" contain some binary differences >>> between svn and zip. >>> Example: file test/resources/org/apache/jmet >>> er/protocol/jms/sampler/render/cp1252.txt >>> in svn is 3 bytes hex 0xe9 0xe8 0x80 >>> and in zip 6 bytes hex 0xef 0xbf 0xbd 0xef 0xbf 0xbd >>> - files bin/report-template/*/*/*/make.sh are not executable >>> (not in svn and not in any bin or src archive) >>> - builds fine except: >>> - needed to disable class RenderInBrowser.java, >>> because Oracle doesn't support JavaFX for Solaris >>> - build result looks consistent with distribution, except for >>> - some ordering in javadoc (expected) >>> - binary jar files (expected) >>> - no Javadoc warnings >>> - new dependencies (expected) >>> - ran the tests (but only with java.awt.headless) without failures >>> - needed to adjust the 500ms test execution time margin in >>> TestSchedulerWithTimer.jmx (slow test system) >>> - I have not checked the staging repository. >>> - I have not checked the rat report >>> >>> Build and tests were done using Java 1.8.0_121, OS was Solaris 10 Sparc. >>> >>> Regards, >>> >>> Rainer >>> >> >> >> >> > > -- Cordialement. Philippe Mouawad. Ubik-Ingénierie UBIK LOAD PACK Web Site <http://www.ubikloadpack.com/> UBIK LOAD PACK on TWITTER <https://twitter.com/ubikloadpack>

Re: Release a 3.2

2017-03-29 Thread Philippe Mouawad
gt; On 28/03/2017 10:07, Maxime Chassagneux wrote: > >> +1 >> >> 2017-03-28 10:13 GMT+02:00 Antonio Gomes Rodrigues : >> >> +1 >>> >>> Antonio >>> >>> 2017-03-27 22:34 GMT+02:00 Philippe Mouawad >> >: >>> >>&g

<    5   6   7   8   9   10   11   12   13   14   >