Mikhail Makeev

Results 3 comments of Mikhail Makeev

I can confirm this problem and this is a very critical bug.

I believe the issue lies within the close() method. Instead of directly calling self.abort(), it should be replaced with: ```python timeout = self.app.config.GRACEFUL_SHUTDOWN_TIMEOUT self.loop.call_later(timeout, self.abort) ``` By making this adjustment,...