Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-sdk
ref: develop
path: ydb-java-sdk

- name: Build YDB Java SDK
Expand All @@ -64,7 +63,6 @@ jobs:
uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-yc
ref: develop
path: ydb-java-yc

- name: Build YDB YC Auth Provider
Expand Down
2 changes: 1 addition & 1 deletion jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<packaging>pom</packaging>

<properties>
<ydb.jdbc.version>2.3.5</ydb.jdbc.version>
<ydb.jdbc.version>2.3.10</ydb.jdbc.version>
<slf4j.version>1.7.36</slf4j.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<log4j.version>2.22.1</log4j.version>
<jcommander.version>1.82</jcommander.version>

<ydb.sdk.version>2.3.10</ydb.sdk.version>
<ydb.sdk.version>2.3.13</ydb.sdk.version>
</properties>

<modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import tech.ydb.core.Result;
import tech.ydb.core.grpc.GrpcTransport;
import tech.ydb.topic.TopicClient;
Expand Down Expand Up @@ -224,11 +225,11 @@ public TopicDescription describeTopic(String topicPath, TopicClient topicClient)
.append("Retention storage mb: ").append(description.getRetentionStorageMb()).append("\n");

message.append("Supported codecs:\n");
List<Codec> supportedCodecs = description.getSupportedCodecs().getCodecs();
List<?> supportedCodecs = description.getSupportedCodecs().getCodecs();
if (supportedCodecs.isEmpty()) {
message.append(" none\n");
}
for (Codec codec : supportedCodecs) {
for (Object codec : supportedCodecs) {
message.append(" ").append(codec).append("\n");
}

Expand All @@ -238,11 +239,11 @@ public TopicDescription describeTopic(String topicPath, TopicClient topicClient)
.append(" Important: ").append(consumer.isImportant()).append("\n")
.append(" Read from: ").append(consumer.getReadFrom()).append("\n")
.append(" Supported codecs: \n");
List<Codec> codecs = consumer.getSupportedCodecs().getCodecs();
List<?> codecs = consumer.getSupportedCodecsList();
if (codecs.isEmpty()) {
message.append(" none\n");
}
for (Codec codec : codecs) {
for (Object codec : codecs) {
message.append(" ").append(codec).append("\n");
}

Expand Down