Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Abingcbc committed Dec 25, 2024
1 parent d22604d commit fbf864e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/runner/ProcessorRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ void ProcessorRunner::Run(uint32_t threadNo) {
if (hasOldPipeline) {
pipeline->SubInProcessCnt(); // old pipeline
pipeline = PipelineManager::GetInstance()->FindConfigByName(configName); // update to new pipeline
pipeline->AddInProcessCnt();
if (!pipeline) {
LOG_INFO(sLogger,
("pipeline not found during processing, perhaps due to config deletion",
"discard data")("config", configName));
continue;
}
pipeline->AddInProcessCnt();
}

if (pipeline->IsFlushingThroughGoPipeline()) {
Expand Down

0 comments on commit fbf864e

Please sign in to comment.