Skip to content

Commit

Permalink
Fix bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
small-turtle-1 committed Dec 28, 2023
1 parent bce73ba commit 1e3f635
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scheduler/fragment_task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ bool FragmentTask::QuitFromWorkerLoop() {
return false;
}
if (source_state_->state_type_ != SourceStateType::kQueue) {
Error<SchedulerException>("SourceStateType is not kQueue");
return false;
// Error<SchedulerException>("SourceStateType is not kQueue");
}
auto *queue_state = static_cast<QueueSourceState *>(source_state_.get());

Expand Down

0 comments on commit 1e3f635

Please sign in to comment.