Skip to content

Commit 98459ab

Browse files
fix default_run test in topic workload cli (#17447)
1 parent 7f0d628 commit 98459ab

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

ydb/apps/ydb/ut/workload-transfer-topic-to-table.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@ class TFixture : public NUnitTest::TBaseFixture {
2424
TableName = GenerateTableName();
2525

2626
try {
27-
ExecYdb({"init", "--topic", TopicName, "--table", TableName});
27+
ExecYdb({
28+
"init",
29+
"--topic", TopicName,
30+
"--table", TableName,
31+
// we run with 3 partitions cause CI doesn't manage to start
32+
// reading default 128 partitions in 10 seconds of DEFAULT_RUN test
33+
"--topic-partitions", "3"
34+
});
2835
} catch (const yexception) {
2936
// ignore errors
3037
}

0 commit comments

Comments
 (0)