Skip to content

Commit 3b555dc

Browse files
Fix progress status for auto dropping (#17562)
1 parent 8df4e48 commit 3b555dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/tx/schemeshard/schemeshard_export.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ void TSchemeShard::FromXxportInfo(NKikimrExport::TExport& exprt, const TExportIn
100100
case TExportInfo::EState::CopyTables:
101101
exprt.SetProgress(Ydb::Export::ExportProgress::PROGRESS_PREPARING);
102102
break;
103-
103+
104+
case TExportInfo::EState::AutoDropping:
104105
case TExportInfo::EState::Transferring:
105106
case TExportInfo::EState::Done:
106107
for (ui32 itemIdx : xrange(exportInfo->Items.size())) {
@@ -111,7 +112,6 @@ void TSchemeShard::FromXxportInfo(NKikimrExport::TExport& exprt, const TExportIn
111112
: Ydb::Export::ExportProgress::PROGRESS_TRANSFER_DATA);
112113
break;
113114

114-
case TExportInfo::EState::AutoDropping:
115115
case TExportInfo::EState::Dropping:
116116
exprt.SetProgress(Ydb::Export::ExportProgress::PROGRESS_DONE);
117117
break;

0 commit comments

Comments
 (0)