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 84ade9f commit 0ca47b8Copy full SHA for 0ca47b8
yt/yql/providers/yt/comp_nodes/dq/dq_yt_rpc_reader.cpp
@@ -176,6 +176,7 @@ void TParallelFileInputState::RunNext() {
176
CreateInputStream(Settings_->Requests[inputIdx]).SubscribeUnique(BIND([state = InnerState_, inputIdx](NYT::TErrorOr<NYT::NConcurrency::IAsyncZeroCopyInputStreamPtr>&& stream) {
177
if (!stream.IsOK()) {
178
state->Error = stream;
179
+ state->WaitPromise.TrySet();
180
return;
181
}
182
state->RawInputs[inputIdx] = std::move(stream.Value());
0 commit comments