We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a80ed commit 5ff916bCopy full SHA for 5ff916b
yt/cpp/mapreduce/client/retryful_writer.cpp
@@ -21,6 +21,10 @@ namespace NYT {
21
TRetryfulWriter::~TRetryfulWriter()
22
{
23
NDetail::FinishOrDie(this, AutoFinish_, "TRetryfulWriter");
24
+ if (WriterState_ == Ok) {
25
+ Y_ABORT_IF(AutoFinish_); // if AutoFinish_, FinishOrDie would have called Finish
26
+ Abort();
27
+ }
28
}
29
30
void TRetryfulWriter::CheckWriterState()
0 commit comments