Skip to content

Commit

Permalink
Fix test and unmute (ydb-platform#10021)
Browse files Browse the repository at this point in the history
  • Loading branch information
nshestakov authored Oct 4, 2024
1 parent b83b572 commit a4dca6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
11 changes: 0 additions & 11 deletions .github/config/muted_ya.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,6 @@ ydb/core/kqp/ut/service KqpQueryService.QueryOnClosedSession
ydb/core/kqp/ut/service KqpService.CloseSessionsWithLoad
ydb/core/persqueue/ut [*/*]*
ydb/core/persqueue/ut TPQTest.*DirectRead*
ydb/core/persqueue/ut/ut_with_sdk [*/*]*
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionMerge_PreferedPartition_BeforeAutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ManySession_AutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ManySession_BeforeAutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ManySession_existed_AutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_PreferedPartition_AutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ReadNotEmptyPartitions_AutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.PartitionSplit_ReadNotEmptyPartitions_BeforeAutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_AutoscaleAwareSDK_AutoCommit
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_PreferedPartition_AutoscaleAwareSDK
ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_PreferedPartition_BeforeAutoscaleAwareSDK
ydb/core/quoter/ut QuoterWithKesusTest.PrefetchCoefficient
ydb/core/tx/coordinator/ut Coordinator.RestoreTenantConfiguration
ydb/core/tx/datashard/ut_change_exchange Cdc.InitialScanDebezium
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/persqueue/ut/common/autoscaling_ut_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ template<SdkVersion Sdk>
void TTestReadSession<Sdk>::Close() {
Run();
Cerr << ">>>>> " << Impl->Name << " Closing reading session " << Endl << Flush;
Session->Close();
Session->Close(TDuration::Seconds(5));
Session.reset();
}

Expand Down
3 changes: 3 additions & 0 deletions ydb/core/persqueue/ut/ut_with_sdk/balancing_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ Y_UNIT_TEST_SUITE(Balancing) {
UNIT_ASSERT_VALUES_EQUAL(5, p[TEST_TOPIC].size());
UNIT_ASSERT_VALUES_EQUAL(5, p["other-test-topic"].size());
}

readSession0->Close();
readSession1->Close();
}

Y_UNIT_TEST(Balancing_ManyTopics_TopicApi) {
Expand Down

0 comments on commit a4dca6d

Please sign in to comment.