Callback: request is fully received.
(self)
| 554 | self._body_receiver.feed(chunk) |
| 555 | |
| 556 | def _on_message_complete(self): |
| 557 | """Callback: request is fully received.""" |
| 558 | if self._body_receiver: |
| 559 | self._body_receiver.set_complete() |
| 560 | |
| 561 | def _handle_h1c_exception(self, exc): |
| 562 | """Handle gunicorn_h1c exceptions with appropriate HTTP status codes. |
no test coverage detected