a4b966c327
The Phase 6 migration of queue_fallback moved self._process_event_queue() into _run_pending_tasks_once_result AFTER the try/except block, making it unreachable code. As a result, the event_queue was never consumed, causing user_request events to never reach _handle_request_event. This was caught by test_context_sim_live (the live_gui sim polls ai_status for 60s and never sees a transition past 'sending...' because the worker ran but the event was never processed). Fix: move self._process_event_queue() back to its original location in _run_event_loop, immediately after self.submit_io(queue_fallback). TIER-2 READ conductor/code_styleguides/error_handling.md end-to-end before this fix. The original code structure is the source of truth; my Phase 6 migration violated it.