Vladimir Sitnikov
Vladimir Sitnikov
Gradle Enterprise plugin version 3.16.1 is newer than the newest version supported by Gradle Enterprise 2023.3.4 which is 3.15. Please update to a newer version of Gradle Enterprise. We need...
Please attach the test plan that reproduces the issue
The root cause is `${__time(yyyy-MM-dd hh:mm:sss)}` You should have `ss` instead of `sss`. In any case, you'd better use query parameters rather than building the string with jmeter templates. It...
Please provide exact reproducer
Please provide JMX as it would make it much easier to reproduce and analyze the issue.
Please provide a reproducer. What are you trying to achieve?
The code in the sample is ```java import org.apache.commons.io.IOUtils; import java.util.zip.GZIPOutputStream; String bodyString = sampler.getArguments().getArgument(0).getValue(); byte [] requestBody = bodyString.getBytes(); ByteArrayOutputStream out = new ByteArrayOutputStream(requestBody.length); GZIPOutputStream gzip = new GZIPOutputStream(out);...
Can you share the test plan that reproduces the issue? The issue might be fixed by https://github.com/apache/jmeter/pull/6193 though, so it would be great if you could try trying the latest...
wiremock-jre8 3.x requires Java 11 😂
Currently `ForEachController` initializes `start index` in `org.apache.jmeter.engine.event.LoopIterationListener#iterationStart`. We should probably try initializing the start index only when the execution reaches the controller.