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 44df37b commit 5f6b6dbCopy full SHA for 5f6b6db
src/test/java/org/apache/skywalking/banyandb/v1/client/BanyanDBAuthTest.java
@@ -64,10 +64,10 @@ public class BanyanDBAuthTest {
64
.forPort(HTTP_PORT)
65
.withHeader("Authorization", "Basic " + AUTH)
66
.forStatusCode(200)
67
- .withStartupTimeout(Duration.ofSeconds(30)));
+ .withStartupTimeout(Duration.ofSeconds(1000)));
68
69
@Test
70
- public void testAuthWithCorrect() throws BanyanDBException, IOException {
+ public void testAuthWithCorrect() throws IOException {
71
BanyanDBClient client = createClient("admin", "123456");
72
client.connect();
73
await().atMost(10, TimeUnit.SECONDS).untilAsserted(() -> {
0 commit comments