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 49c3183 commit d6ce7b4Copy full SHA for d6ce7b4
src/test/java/org/apache/skywalking/banyandb/v1/client/BanyanDBAuthTest.java
@@ -56,14 +56,10 @@ public class BanyanDBAuthTest {
56
)
57
.withCommand("standalone",
58
"--auth-config-file", "/tmp/bydb_server_config.yaml",
59
- "--enable-health-auth", "true"
+ "--enable-health-auth", "false"
60
61
.withExposedPorts(GRPC_PORT, HTTP_PORT)
62
- .waitingFor(Wait.forHttp("/api/healthz")
63
- .forPort(HTTP_PORT)
64
- .withHeader("Authorization", "Basic " + AUTH)
65
- .forStatusCode(200)
66
- .withStartupTimeout(Duration.ofSeconds(1000)));
+ .waitingFor(Wait.forHttp("/api/healthz").forPort(HTTP_PORT));
67
68
@Test
69
public void testAuthWithCorrect() throws IOException {
0 commit comments