We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29ca67a commit 129ed8bCopy full SHA for 129ed8b
jmx-scraper/src/integrationTest/java/io/opentelemetry/contrib/jmxscraper/JmxConnectionTest.java
@@ -143,8 +143,7 @@ void serverSslClientSsl(@TempDir Path tempDir) {
143
144
connectionTest(
145
app ->
146
- app
147
- .withJmxPort(JMX_PORT)
+ app.withJmxPort(JMX_PORT)
148
.withJmxSsl()
149
.withClientSslCertificate()
150
.withKeyStore(serverKeystore, SERVER_PASSWORD)
@@ -153,8 +152,7 @@ void serverSslClientSsl(@TempDir Path tempDir) {
153
152
scraper
154
.withRmiServiceUrl(APP_HOST, JMX_PORT)
155
.withKeyStore(clientKeystore, CLIENT_PASSWORD)
156
- .withTrustStore(clientTrustStore, CLIENT_PASSWORD)
157
- );
+ .withTrustStore(clientTrustStore, CLIENT_PASSWORD));
158
}
159
160
private static void connectionTest(
0 commit comments