From 9c085c59bd95b0887d883e81d5c0d3ef9f5da194 Mon Sep 17 00:00:00 2001 From: Harshil <37377066+harshil21@users.noreply.github.com> Date: Mon, 3 Jul 2023 02:10:10 +0400 Subject: [PATCH] old doc link -> new doc link --- Concurrency.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Concurrency.md b/Concurrency.md index 6e06cf8..6451c55 100644 --- a/Concurrency.md +++ b/Concurrency.md @@ -127,7 +127,7 @@ while not application.update_queue.empty(): coroutine = application.process_update(update) asyncio.create_task(do_process_update(update, coroutine)) ``` -This is just an example of how to use the `BaseUpdateProcessor` class to handle updates in the way you want, there are endless possibilities to this. See the [documentation](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.baseupdateprocessor.html#telegram.ext.BaseUpdateProcessor) for more information. +This is just an example of how to use the `BaseUpdateProcessor` class to handle updates in the way you want, there are endless possibilities to this. See the [documentation](https://docs.python-telegram-bot.org/en/latest/telegram.ext.baseupdateprocessor.html#telegram.ext.BaseUpdateProcessor) for more information. **Note:** The number of concurrently processed updates is limited (the limit defaults to 4096 updates at a time). This is a simple measure to avoid e.g. DDOS attacks