diff options
author | Alek5andr-Kotov <akotov@ydb.tech> | 2025-03-14 12:14:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-14 12:14:00 +0300 |
commit | 4eb60f8c618ef6167c802a8a27153cef74cc57f2 (patch) | |
tree | 29caae1308d6e83d5c3bec81ab8b0f053bfcc6e5 | |
parent | 3917ee3bf8708df6c1f97e3f5659c44272961fd3 (diff) | |
download | ydb-4eb60f8c618ef6167c802a8a27153cef74cc57f2.tar.gz |
Fixed the `TPqGroupTestReboots.AlterWithReboots` tests (#15734)
-rw-r--r-- | .github/config/muted_ya.txt | 2 | ||||
-rw-r--r-- | ydb/core/tx/schemeshard/ut_pq_reboots/ut_pq_reboots.cpp | 14 |
2 files changed, 1 insertions, 15 deletions
diff --git a/.github/config/muted_ya.txt b/.github/config/muted_ya.txt index 2085bfa15a5..7c2418235c8 100644 --- a/.github/config/muted_ya.txt +++ b/.github/config/muted_ya.txt @@ -60,8 +60,6 @@ ydb/core/tx/datashard/ut_incremental_backup IncrementalBackup.ComplexRestoreBack ydb/core/tx/schemeshard/ut_login_large TSchemeShardLoginLargeTest.RemoveLogin_Many ydb/core/tx/schemeshard/ut_move_reboots TSchemeShardMoveRebootsTest.WithData ydb/core/tx/schemeshard/ut_move_reboots TSchemeShardMoveRebootsTest.WithDataAndPersistentPartitionStats -ydb/core/tx/schemeshard/ut_pq_reboots TPqGroupTestReboots.AlterWithReboots-PQConfigTransactionsAtSchemeShard-false -ydb/core/tx/schemeshard/ut_pq_reboots TPqGroupTestReboots.AlterWithReboots-PQConfigTransactionsAtSchemeShard-true ydb/core/tx/tiering/ut ColumnShardTiers.TTLUsage ydb/core/viewer/tests test.py.test_viewer_nodes ydb/core/viewer/tests test.py.test_viewer_sysinfo diff --git a/ydb/core/tx/schemeshard/ut_pq_reboots/ut_pq_reboots.cpp b/ydb/core/tx/schemeshard/ut_pq_reboots/ut_pq_reboots.cpp index 102095301bd..382572cde0c 100644 --- a/ydb/core/tx/schemeshard/ut_pq_reboots/ut_pq_reboots.cpp +++ b/ydb/core/tx/schemeshard/ut_pq_reboots/ut_pq_reboots.cpp @@ -163,19 +163,7 @@ Y_UNIT_TEST_SUITE(TPqGroupTestReboots) { "PQTabletConfig: {PartitionConfig { LifetimeSeconds : 10}}" ); - TestAlterPQGroup(runtime, ++t.TxId, "/MyRoot/DirA", - "Name: \"PQGroup\"" - "TotalGroupCount: 9 " - "PartitionPerTablet: 10 ", - {NKikimrScheme::StatusMultipleModifications}); - - TestAlterPQGroup(runtime, ++t.TxId, "/MyRoot/DirA", - "Name: \"PQGroup\"" - "TotalGroupCount: 10 " - "PartitionPerTablet: 9 ", - {NKikimrScheme::StatusMultipleModifications}); - - t.TestEnv->TestWaitNotification(runtime, {t.TxId-2, t.TxId-1, t.TxId}); + t.TestEnv->TestWaitNotification(runtime, t.TxId); pqVer = TestDescribeResult(DescribePath(runtime, "/MyRoot/DirA/PQGroup", true), {NLs::Finished, |