OOP & Design Patterns - Observer Pattern - Event System, Publish-Subscribe
Given the following snapshot of the observer registry in a thread-safe observer pattern implementation:
```python
observers = {
'eventA': {obs1, obs3},
'eventB': {obs2}
}
```
If a notify call for 'eventA' results in only obs3 receiving the update, which of the following is the most likely cause?
