bridge-connector-deque-maxlen-for-bounded-buffer

Using a plain list with pop(0) for the bridge event buffer is O(n) per dequeue and unbounded under backpressure. The correct pattern is collections.deque(maxlen=<N>) which provides O(1) append/popleft and automatic eviction of oldest events when the buffer is full. Set maxlen to match your expected event burst ceiling.