Merge pull request #215 from aspacca/asyncio-lock-back-in-tautulli

the order matters
This commit is contained in:
Ville Ranki 2022-08-19 16:52:42 +03:00 committed by GitHub
commit 867fe0e525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 7 deletions

View File

@ -20,8 +20,11 @@ nest_asyncio.apply()
rooms = dict()
global_bot = None
send_entry_lock = asyncio.Lock()
async def send_entry(blob, content_type, fmt_params, rooms):
async with send_entry_lock:
for room_id in rooms:
room = MatrixRoom(room_id=room_id, own_user_id=os.getenv("BOT_OWNERS"),
encrypted=rooms[room_id])