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