File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
aws-resources/src/test/java/io/opentelemetry/contrib/aws/resource Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1010import com .google .common .collect .ImmutableMap ;
1111import com .linecorp .armeria .common .AggregatedHttpRequest ;
1212import com .linecorp .armeria .common .HttpResponse ;
13- import com .linecorp .armeria .common .TlsKeyPair ;
1413import com .linecorp .armeria .server .ServerBuilder ;
1514import com .linecorp .armeria .testing .junit5 .server .SelfSignedCertificateExtension ;
1615import com .linecorp .armeria .testing .junit5 .server .ServerExtension ;
@@ -69,7 +68,7 @@ static class HttpsServerTest {
6968 new ServerExtension () {
7069 @ Override
7170 protected void configure (ServerBuilder sb ) {
72- sb .tls (TlsKeyPair . of ( certificate .privateKeyFile (), certificate .certificateFile () ));
71+ sb .tls (certificate .certificateFile (), certificate .privateKeyFile ( ));
7372
7473 sb .service ("/" , (ctx , req ) -> HttpResponse .of ("Thanks for trusting me" ));
7574 }
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ val otelInstrumentationVersion = "2.9.0-alpha"
1212val DEPENDENCY_BOMS = listOf (
1313 " com.fasterxml.jackson:jackson-bom:2.18.1" ,
1414 " com.google.guava:guava-bom:33.3.1-jre" ,
15- " com.linecorp.armeria:armeria-bom:1.31.0 " ,
15+ " com.linecorp.armeria:armeria-bom:1.30.1 " ,
1616 " org.junit:junit-bom:5.11.3" ,
1717 " io.grpc:grpc-bom:1.68.1" ,
1818 " io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${otelInstrumentationVersion} " ,
You can’t perform that action at this time.
0 commit comments