From: Guillaume Pellerin Date: Thu, 19 Jan 2023 16:43:31 +0000 (+0100) Subject: await X-Git-Tag: 2.8.0~9 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=44d1277d0794a8ed7c015dc7871f807797265141;p=teleforma.git await --- diff --git a/bin b/bin index 877deb91..52d01bc8 160000 --- a/bin +++ b/bin @@ -1 +1 @@ -Subproject commit 877deb91a9d035c74bf726fed8851d38e93014ce +Subproject commit 52d01bc8d0ec34d96ae3751fa5709a8ae05066fd diff --git a/teleforma/models/core.py b/teleforma/models/core.py index 3ab71ce3..605e2ac5 100755 --- a/teleforma/models/core.py +++ b/teleforma/models/core.py @@ -463,7 +463,7 @@ class Conference(models.Model): else: transport = httpx.HTTPTransport(uds=settings.CHANNEL_URL) async with httpx.AsyncClient(transport=transport) as client: - response = client.post("http://localhost" + reverse('teleforma-live-conference-notify'), + response = await client.post("http://localhost" + reverse('teleforma-live-conference-notify'), data={'id': self.id}, timeout=20.0) assert response.status_code == 200