Skip to content

Commit 64258d3

Browse files
authored
Update smoke test images (#9262)
1 parent 3957429 commit 64258d3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

smoke-tests/src/test/groovy/io/opentelemetry/smoketest/AppServerTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ abstract class AppServerTest extends SmokeTest {
5454
@Override
5555
protected String getTargetImage(String jdk, String serverVersion, boolean windows) {
5656
String platformSuffix = windows ? "-windows" : ""
57-
String extraTag = "20230614.5268785245"
57+
String extraTag = "20230822.5936895750"
5858
String fullSuffix = "${serverVersion}-jdk$jdk$platformSuffix-$extraTag"
5959
return getTargetImagePrefix() + ":" + fullSuffix
6060
}

smoke-tests/src/test/java/io/opentelemetry/smoketest/AbstractTestContainerManager.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ protected Map<String, String> getAgentEnvironment(
2727
jvmArgsEnvVarName,
2828
"-Xmx512m -javaagent:/"
2929
+ TARGET_AGENT_FILENAME
30-
+ " -Dio.opentelemetry.javaagent.slf4j.simpleLogger.log.okhttp3.internal.concurrent.TaskRunner=INFO");
30+
+ " -Dio.opentelemetry.javaagent.slf4j.simpleLogger.log.okhttp3.internal.concurrent.TaskRunner=INFO"
31+
// Liberty20Jdk11, Payara6Jdk11 and Payara6Jdk17 fail with
32+
// java.util.zip.ZipException: Invalid CEN header (invalid zip64 extra data field size)
33+
+ " -Djdk.util.zip.disableZip64ExtraFieldValidation=true");
3134
environment.put("OTEL_BSP_MAX_EXPORT_BATCH_SIZE", "1");
3235
environment.put("OTEL_BSP_SCHEDULE_DELAY", "10ms");
3336
environment.put("OTEL_METRIC_EXPORT_INTERVAL", "1000");

0 commit comments

Comments
 (0)