mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 12:51:18 +00:00
Create a future result before sending its request
This commit is contained in:
parent
2dca5aeac2
commit
5ca422b314
@ -282,6 +282,9 @@ class Session:
|
|||||||
message = self.msg_factory(data)
|
message = self.msg_factory(data)
|
||||||
msg_id = message.msg_id
|
msg_id = message.msg_id
|
||||||
|
|
||||||
|
if wait_response:
|
||||||
|
self.results[msg_id] = Result()
|
||||||
|
|
||||||
log.debug("Sent: %s", message)
|
log.debug("Sent: %s", message)
|
||||||
|
|
||||||
payload = await self.loop.run_in_executor(
|
payload = await self.loop.run_in_executor(
|
||||||
@ -297,8 +300,6 @@ class Session:
|
|||||||
await self.connection.send(payload)
|
await self.connection.send(payload)
|
||||||
|
|
||||||
if wait_response:
|
if wait_response:
|
||||||
self.results[msg_id] = Result()
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
await asyncio.wait_for(self.results[msg_id].event.wait(), timeout)
|
await asyncio.wait_for(self.results[msg_id].event.wait(), timeout)
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
|
Loading…
Reference in New Issue
Block a user