Stop all channels and cleanup
(self)
| 864 | collection.pop(channel_id, None) |
| 865 | |
| 866 | def shutdown(self) -> None: |
| 867 | """Stop all channels and cleanup""" |
| 868 | for channel_id in list(self.stream_managers.keys()): |
| 869 | self.stop_channel(channel_id) |
| 870 | |
| 871 | # Remove Flask-specific routing |
| 872 | def _setup_routes(self) -> None: |
no test coverage detected