Skip to content

Commit a68879e

Browse files
committed
generated file, log
1 parent beaca53 commit a68879e

File tree

3 files changed

+6
-36
lines changed

3 files changed

+6
-36
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Supported topic split merge server feature for topic reader (no api changed)
12
* Fixed hangup when try to send batch of messages with size more, then grpc limits from topic writer internals
23

34
## v3.101.2

tests/integration/topic_partitions_balanced_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package integration
66
import (
77
"context"
88
"fmt"
9+
"os"
910
"strings"
1011
"sync"
1112
"sync/atomic"
@@ -16,6 +17,7 @@ import (
1617

1718
"github.com/ydb-platform/ydb-go-sdk/v3"
1819
"github.com/ydb-platform/ydb-go-sdk/v3/internal/empty"
20+
"github.com/ydb-platform/ydb-go-sdk/v3/internal/version"
1921
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xtest"
2022
"github.com/ydb-platform/ydb-go-sdk/v3/topic/topicoptions"
2123
"github.com/ydb-platform/ydb-go-sdk/v3/topic/topictypes"
@@ -112,6 +114,9 @@ func TestTopicPartitionsBalanced(t *testing.T) {
112114
}
113115

114116
func TestTopicSplitPartitions(t *testing.T) {
117+
if os.Getenv("YDB_VERSION") != "nightly" && version.Lt(os.Getenv("YDB_VERSION"), "25.0") {
118+
t.Skip("require support autosplit for topics")
119+
}
115120
scope := newScope(t)
116121

117122
params := `
@@ -181,5 +186,4 @@ readFromFirstPartition:
181186
scope.Require.NotEqual(firstPartitionID, msg.PartitionID())
182187
messagesCounter.Add(-1)
183188
}
184-
185189
}

trace/topic_gtrace.go

Lines changed: 0 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)