diff --git a/core/include/gnuradio-4.0/Scheduler.hpp b/core/include/gnuradio-4.0/Scheduler.hpp index dd123c71..f2dd60dc 100644 --- a/core/include/gnuradio-4.0/Scheduler.hpp +++ b/core/include/gnuradio-4.0/Scheduler.hpp @@ -234,7 +234,6 @@ class SchedulerBase : public Block { std::lock_guard lock(_jobListsMutex); _graph.forEachBlockMutable([this](auto& block) { this->emitErrorMessageIfAny("LifecycleState -> RUNNING", block.changeState(lifecycle::RUNNING)); - for_each_port([](auto& port) { port.publishPendingTags(); }, outputPorts(this)); }); if constexpr (executionPolicy() == ExecutionPolicy::singleThreaded || executionPolicy() == ExecutionPolicy::singleThreadedBlocking) { assert(_nRunningJobs.load(std::memory_order_acquire) == 0UZ);