Skip to content

Commit 7fafcb6

Browse files
committed
feat: update to jmeter 5.6.3
1 parent 056ff42 commit 7fafcb6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## v1.0.14 (next)
44

55
- Update dependencies (go 1.22)
6+
- Update to JMeter 5.6.3
67

78
## v1.0.13
89

@@ -55,4 +56,4 @@
5556

5657
## v1.0.0
5758

58-
- Initial release
59+
- Initial release

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ FROM azul/zulu-openjdk-debian:21
4040
LABEL "steadybit.com.discovery-disabled"="true"
4141

4242
ENV MIRROR https://downloads.apache.org/jmeter/binaries
43-
ENV JMETER_VERSION 5.6
43+
ENV JMETER_VERSION 5.6.3
4444
ENV JMETER_HOME /opt/apache-jmeter-${JMETER_VERSION}
4545
ENV JMETER_BIN ${JMETER_HOME}/bin
4646
ENV PATH ${JMETER_BIN}:$PATH

e2e/integration_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"github.com/steadybit/action-kit/go/action_kit_test/e2e"
99
"github.com/stretchr/testify/require"
1010
"testing"
11+
"time"
1112
)
1213

1314
func TestWithMinikube(t *testing.T) {
@@ -47,6 +48,6 @@ func testRunJMeter(t *testing.T, m *e2e.Minikube, e *e2e.Extension) {
4748
exec, err := e.RunActionWithFiles("com.steadybit.extension_jmeter.run", nil, config, nil, files)
4849
require.NoError(t, err)
4950
e2e.AssertProcessRunningInContainer(t, m, e.Pod, "extension", "jmeter", true)
50-
e2e.AssertLogContains(t, m, e.Pod, "Waiting for possible Shutdown/StopTestNow/HeapDump/ThreadDump message on port 4445")
51+
e2e.AssertLogContainsWithTimeout(t, m, e.Pod, "Waiting for possible Shutdown/StopTestNow/HeapDump/ThreadDump message on port 4445", 60*time.Second)
5152
require.NoError(t, exec.Cancel())
5253
}

0 commit comments

Comments
 (0)