mirror of https://github.com/django/django.git
Fixed #31407 -- Fixed unawaited coroutine warning for Python 3.8+.
Co-authored-by: Mark Korput <dr.theman@gmail.com>
This commit is contained in:
parent
377018b6ff
commit
ed274a4ae4
|
@ -58,5 +58,8 @@ class CoroutineClearingView:
|
|||
self._unawaited_coroutine = asyncio.sleep(0)
|
||||
return self._unawaited_coroutine
|
||||
|
||||
def __del__(self):
|
||||
self._unawaited_coroutine.close()
|
||||
|
||||
|
||||
async_unawaited = CoroutineClearingView()
|
||||
|
|
Loading…
Reference in New Issue