Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions .github/workflows/benchmark.yml

This file was deleted.

4 changes: 4 additions & 0 deletions testing/feature-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ tasks.named("compileTestJava") {
dependsOn(project(":solarwinds-otel-sdk").tasks.named("shadowJar"))
}

tasks.withType<Test>().configureEach {
jvmArgs("-Dotel.propagators=tracecontext,baggage,solarwinds")
}

swoJava {
minJavaVersionSupported.set(JavaVersion.VERSION_17)
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ContextPropagationTest {
static final AgentInstrumentationExtension testing = AgentInstrumentationExtension.create();

@Test
void verifyTraceContextPropagatesViaW3CHeaders() {
void verifyTraceContextPropagatesViaW3cHeaders() {
testing.runWithSpan(
"service-a",
() -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void verifyProfilesIsCollected() {
() -> {
try {
Thread.sleep(2000);
} catch (InterruptedException ignore) {
} catch (InterruptedException ignored) {
}
});

Expand Down
Loading