File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/test/java/org/apache/skywalking/banyandb/v1/client Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1818
1919package org .apache .skywalking .banyandb .v1 .client ;
2020
21- import lombok .extern .slf4j .Slf4j ;
2221import org .apache .skywalking .banyandb .common .v1 .BanyandbCommon ;
2322import org .apache .skywalking .banyandb .v1 .client .grpc .exception .BanyanDBException ;
2423import org .apache .skywalking .banyandb .v1 .client .grpc .exception .UnauthenticatedException ;
3534
3635import static org .junit .Assert .assertThrows ;
3736
38- @ Slf4j
3937public 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 {
You can’t perform that action at this time.
0 commit comments