Update ExecutingGraph.cpp

This commit is contained in:
Nikolai Kochetov 2023-03-30 21:33:33 +02:00 committed by GitHub
parent c71deea9aa
commit afa3052565
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ bool ExecutingGraph::expandPipeline(std::stack<uint64_t> & stack, uint64_t pid)
}
processors->insert(processors->end(), new_processors.begin(), new_processors.end());
// Do not consider sources added during pipeline expansion as cancelable to avoid tricky corner cases (e.g. ConvertingAggregatedToChunksWithMergingSource cancelation)
// Do not consider sources added during pipeline expansion as cancelable to avoid tricky corner cases (e.g. ConvertingAggregatedToChunksWithMergingSource cancellation)
source_processors.resize(source_processors.size() + new_processors.size(), false);
}