Skip to content

Commit fe38242

Browse files
disable by default
1 parent ff0b1f2 commit fe38242

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

ydb/core/protos/feature_flags.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,5 @@ message TFeatureFlags {
206206
optional bool SwitchToConfigV1 = 180 [default = false];
207207
optional bool EnableEncryptedExport = 181 [default = false];
208208
optional bool EnableAlterDatabase = 182 [default = false];
209-
optional bool EnableExportAutoDropping = 183 [default = true];
209+
optional bool EnableExportAutoDropping = 183 [default = false];
210210
}

ydb/core/tx/schemeshard/ut_export/ut_export.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -2807,6 +2807,9 @@ attributes {
28072807
}
28082808
)", S3Port());
28092809

2810+
Env();
2811+
Runtime().GetAppData().FeatureFlags.SetEnableExportAutoDropping(true);
2812+
28102813
Run(Runtime(), Env(), TVector<TString>{
28112814
R"(
28122815
Name: "Table"

ydb/core/tx/schemeshard/ut_export_reboots_s3/ut_export_reboots_s3.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,7 @@ Y_UNIT_TEST_SUITE(TExportToS3WithRebootsTests) {
598598

599599
t.Run([&](TTestActorRuntime& runtime, bool& activeZone) {
600600
runtime.SetLogPriority(NKikimrServices::EXPORT, NActors::NLog::PRI_TRACE);
601+
runtime.GetAppData().FeatureFlags.SetEnableExportAutoDropping(true);
601602
{
602603
TInactiveZone inactive(activeZone);
603604
CreateSchemeObjects(t, runtime, {

0 commit comments

Comments
 (0)