(websocket, call_next)
| 215 | |
| 216 | @websocket_middleware |
| 217 | async def catcher(websocket, call_next): |
| 218 | try: |
| 219 | return await call_next() |
| 220 | except Exception as e: # pragma: no cover |
| 221 | caught.append(e) |
| 222 | raise |
| 223 | |
| 224 | myapp = make_app(middleware=[Middleware(catcher)]) |
| 225 |
nothing calls this directly
no test coverage detected
searching dependent graphs…