Separating CLI arguments into separate strings to avoid concatenation
Closes #23965
This commit is contained in:
parent
e58981adb5
commit
8499d2cba3
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ public class HealthDistTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Launch({ "start-dev", "--health-enabled=true --metrics-enabled=true" })
|
@Launch({ "start-dev", "--health-enabled=true", "--metrics-enabled=true" })
|
||||||
void testNonBlockingProbes() {
|
void testNonBlockingProbes() {
|
||||||
when().get("/health/live").then()
|
when().get("/health/live").then()
|
||||||
.statusCode(200);
|
.statusCode(200);
|
||||||
|
@ -75,7 +75,7 @@ public class HealthDistTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Launch({ "start-dev", "--health-enabled=true --metrics-enabled=true --health-classic-probes-enabled=true" })
|
@Launch({ "start-dev", "--health-enabled=true", "--metrics-enabled=true", "--health-classic-probes-enabled=true" })
|
||||||
void testBlockingProbes() {
|
void testBlockingProbes() {
|
||||||
when().get("/health/live").then()
|
when().get("/health/live").then()
|
||||||
.statusCode(200);
|
.statusCode(200);
|
||||||
|
|
Loading…
Reference in a new issue