Skip to content

Commit

Permalink
?wait=true 롤백
Browse files Browse the repository at this point in the history
  • Loading branch information
minibox24 committed Mar 9, 2024
1 parent c754ca1 commit 897f4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/alarm/sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async def _send(self, subscribers: list[str], message: bytes) -> list[str]:
proxy = await self._alarm_repo.get_least_usage_proxy()
async with aiohttp.ClientSession(headers=self._headers) as session:
alarms = [
self._request(session, url=f"{DISCORD_WEBHOOK_URL}{key}?wait=true", data=message, proxy=proxy)
self._request(session, url=f"{DISCORD_WEBHOOK_URL}{key}", data=message, proxy=proxy)
for key in subscribers
]
responses = await asyncio.gather(*alarms)
Expand Down

0 comments on commit 897f4bf

Please sign in to comment.