Skip to content

Commit a4dca6d

Browse files
authored
Fix test and unmute (#10021)
1 parent b83b572 commit a4dca6d

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

.github/config/muted_ya.txt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,6 @@ ydb/core/kqp/ut/service KqpQueryService.QueryOnClosedSession
3131
ydb/core/kqp/ut/service KqpService.CloseSessionsWithLoad
3232
ydb/core/persqueue/ut [*/*]*
3333
ydb/core/persqueue/ut TPQTest.*DirectRead*
34-
ydb/core/persqueue/ut/ut_with_sdk [*/*]*
35-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionMerge_PreferedPartition_BeforeAutoscaleAwareSDK
36-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ManySession_AutoscaleAwareSDK
37-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ManySession_BeforeAutoscaleAwareSDK
38-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ManySession_existed_AutoscaleAwareSDK
39-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_PreferedPartition_AutoscaleAwareSDK
40-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ReadNotEmptyPartitions_AutoscaleAwareSDK
41-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ReadNotEmptyPartitions_BeforeAutoscaleAwareSDK
42-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_AutoscaleAwareSDK_AutoCommit
43-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_PreferedPartition_AutoscaleAwareSDK
44-
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_PreferedPartition_BeforeAutoscaleAwareSDK
4534
ydb/core/quoter/ut QuoterWithKesusTest.PrefetchCoefficient
4635
ydb/core/tx/coordinator/ut Coordinator.RestoreTenantConfiguration
4736
ydb/core/tx/datashard/ut_change_exchange Cdc.InitialScanDebezium

ydb/core/persqueue/ut/common/autoscaling_ut_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ template<SdkVersion Sdk>
520520
void TTestReadSession<Sdk>::Close() {
521521
Run();
522522
Cerr << ">>>>> " << Impl->Name << " Closing reading session " << Endl << Flush;
523-
Session->Close();
523+
Session->Close(TDuration::Seconds(5));
524524
Session.reset();
525525
}
526526

ydb/core/persqueue/ut/ut_with_sdk/balancing_ut.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ Y_UNIT_TEST_SUITE(Balancing) {
143143
UNIT_ASSERT_VALUES_EQUAL(5, p[TEST_TOPIC].size());
144144
UNIT_ASSERT_VALUES_EQUAL(5, p["other-test-topic"].size());
145145
}
146+
147+
readSession0->Close();
148+
readSession1->Close();
146149
}
147150

148151
Y_UNIT_TEST(Balancing_ManyTopics_TopicApi) {

0 commit comments

Comments
 (0)