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 00315d9 commit a0800b5Copy full SHA for a0800b5
yt/yt/client/api/rpc_proxy/row_batch_reader.cpp
@@ -97,7 +97,7 @@ const TNameTablePtr& TRowBatchReader::GetNameTable() const
97
TFuture<TSharedRange<TUnversionedRow>> TRowBatchReader::GetRows()
98
{
99
return Underlying_->Read()
100
- .Apply(BIND([this, weakThis = MakeWeak(this)](const TSharedRef& block) {
+ .Apply(BIND([this, weakThis = MakeWeak(this)] (const TSharedRef& block) {
101
auto this_ = weakThis.Lock();
102
if (!this_) {
103
THROW_ERROR_EXCEPTION(NYT::EErrorCode::Canceled, "Reader destroyed");
0 commit comments