Skip to content

Commit 541e3b9

Browse files
committed
fix
1 parent 46927cc commit 541e3b9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/test/java/org/apache/skywalking/banyandb/v1/client/BanyanDBAuthTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
package org.apache.skywalking.banyandb.v1.client;
2020

21-
import lombok.extern.slf4j.Slf4j;
2221
import org.apache.skywalking.banyandb.common.v1.BanyandbCommon;
2322
import org.apache.skywalking.banyandb.v1.client.grpc.exception.BanyanDBException;
2423
import org.apache.skywalking.banyandb.v1.client.grpc.exception.UnauthenticatedException;
@@ -35,7 +34,6 @@
3534

3635
import static org.junit.Assert.assertThrows;
3736

38-
@Slf4j
3937
public class BanyanDBAuthTest {
4038
private static final String REGISTRY = "ghcr.io";
4139
private static final String IMAGE_NAME = "apache/skywalking-banyandb";
@@ -56,8 +54,8 @@ public class BanyanDBAuthTest {
5654
"--auth-config-file", "/tmp/bydb_server_config.yaml",
5755
"--enable-health-auth", "true"
5856
)
59-
.withExposedPorts(GRPC_PORT, HTTP_PORT)
60-
.waitingFor(Wait.forLogMessage(".*\"message\":\"Listening to\".*", 1));
57+
.withExposedPorts(GRPC_PORT, HTTP_PORT);
58+
// TODO .waitingFor(Wait.forLogMessage(".*\"message\":\"Listening to\".*", 1));
6159

6260
@Test
6361
public void testAuthWithCorrect() throws BanyanDBException, IOException {

0 commit comments

Comments
 (0)