diff --git a/__pycache__/config.cpython-314.pyc b/__pycache__/config.cpython-314.pyc
index f16268c..25fd129 100644
Binary files a/__pycache__/config.cpython-314.pyc and b/__pycache__/config.cpython-314.pyc differ
diff --git a/__pycache__/telegram_bot_service.cpython-314.pyc b/__pycache__/telegram_bot_service.cpython-314.pyc
index 0997c23..1373ca9 100644
Binary files a/__pycache__/telegram_bot_service.cpython-314.pyc and b/__pycache__/telegram_bot_service.cpython-314.pyc differ
diff --git a/app.py b/app.py
index f8c0f19..f4ba107 100644
--- a/app.py
+++ b/app.py
@@ -46,6 +46,13 @@ setup_logging(app)
csrf = CSRFProtect()
csrf.init_app(app)
+# ─────────────────────────────────────────────────────────────
+# ProxyFix: Nginx/NPM 등 리버스 프록시 뒤에서 실행 시 헤더 신뢰
+# (HTTPS 인식, 올바른 IP/Scheme 파악으로 CSRF/세션 문제 해결)
+# ─────────────────────────────────────────────────────────────
+from werkzeug.middleware.proxy_fix import ProxyFix
+app.wsgi_app = ProxyFix(app.wsgi_app, x_for=1, x_proto=1, x_host=1, x_prefix=1)
+
@app.context_processor
def inject_csrf():
@@ -121,31 +128,38 @@ register_routes(app, socketio)
# ─────────────────────────────────────────────────────────────
# 텔레그램 봇 폴링 서비스 (중복 실행 방지 포함)
# ─────────────────────────────────────────────────────────────
-_bot_polling_started = False # 전역 플래그로 중복 방지
-
+_bot_socket_lock = None
def start_telegram_bot_polling() -> None:
- """텔레그램 봇 폴링을 백그라운드 스레드로 시작 (한 번만 실행)"""
+ """텔레그램 봇 폴링을 백그라운드 스레드로 시작 (TCP 소켓 락으로 중복 방지)"""
import threading
+ import socket
- global _bot_polling_started
+ global _bot_socket_lock
- if _bot_polling_started:
- app.logger.warning("🤖 텔레그램 봇 폴링은 이미 시작됨 - 중복 요청 무시")
+ if _bot_socket_lock:
return
- _bot_polling_started = True
+ app.logger.info("🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...")
+
+ try:
+ s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+ s.bind(("127.0.0.1", 50000))
+ s.listen(1)
+ _bot_socket_lock = s
+ app.logger.info("🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.")
+ except OSError:
+ app.logger.warning("⛔ 락 획득 실패: 이미 다른 프로세스(또는 좀비 프로세스)가 포트 50000을 점유 중입니다. 봇 폴링을 건너뜁니다.")
+ return
def _runner():
try:
- # telegram_bot_service.run_polling(app) 호출
telegram_run_polling(app)
except Exception as e:
app.logger.error("텔레그램 봇 폴링 서비스 오류: %s", e)
polling_thread = threading.Thread(target=_runner, daemon=True)
polling_thread.start()
- app.logger.info("🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)")
# ─────────────────────────────────────────────────────────────
diff --git a/backend/models/__pycache__/user.cpython-314.pyc b/backend/models/__pycache__/user.cpython-314.pyc
index cc188e5..fde38b9 100644
Binary files a/backend/models/__pycache__/user.cpython-314.pyc and b/backend/models/__pycache__/user.cpython-314.pyc differ
diff --git a/backend/models/user.py b/backend/models/user.py
index a575521..f9a7b43 100644
--- a/backend/models/user.py
+++ b/backend/models/user.py
@@ -113,14 +113,24 @@ class User(db.Model, UserMixin):
q = (email or "").strip().lower()
if not q:
return None
- return User.query.filter_by(email=q).first()
+ try:
+ return User.query.filter_by(email=q).first()
+ except Exception as e:
+ logging.error(f"User find_by_email error: {e}")
+ db.session.rollback()
+ return None
@staticmethod
def find_by_username(username: Optional[str]) -> Optional["User"]:
q = (username or "").strip()
if not q:
return None
- return User.query.filter_by(username=q).first()
+ try:
+ return User.query.filter_by(username=q).first()
+ except Exception as e:
+ logging.error(f"User find_by_username error: {e}")
+ db.session.rollback()
+ return None
# Flask-Login user_loader (SQLAlchemy 2.0 방식)
diff --git a/backend/routes/__init__.py b/backend/routes/__init__.py
index 9203173..70b879a 100644
--- a/backend/routes/__init__.py
+++ b/backend/routes/__init__.py
@@ -5,7 +5,7 @@ from .auth import register_auth_routes
from .admin import register_admin_routes
from .main import register_main_routes
from .xml import register_xml_routes
-from .utilities import register_util_routes
+from .utilities import register_util_routes, utils_bp
from .file_view import register_file_view
from .jobs import register_jobs_routes
from .idrac_routes import register_idrac_routes
@@ -21,7 +21,7 @@ def register_routes(app: Flask, socketio=None) -> None:
register_admin_routes(app)
register_main_routes(app, socketio)
register_xml_routes(app)
- register_util_routes(app)
+ app.register_blueprint(utils_bp, url_prefix="/utils")
register_file_view(app)
register_jobs_routes(app)
register_idrac_routes(app)
diff --git a/backend/routes/__pycache__/__init__.cpython-314.pyc b/backend/routes/__pycache__/__init__.cpython-314.pyc
index bb1da00..3168fc6 100644
Binary files a/backend/routes/__pycache__/__init__.cpython-314.pyc and b/backend/routes/__pycache__/__init__.cpython-314.pyc differ
diff --git a/backend/routes/__pycache__/auth.cpython-314.pyc b/backend/routes/__pycache__/auth.cpython-314.pyc
index eb38eca..5db8745 100644
Binary files a/backend/routes/__pycache__/auth.cpython-314.pyc and b/backend/routes/__pycache__/auth.cpython-314.pyc differ
diff --git a/backend/routes/__pycache__/main.cpython-314.pyc b/backend/routes/__pycache__/main.cpython-314.pyc
index 1bab7a9..1f84c4c 100644
Binary files a/backend/routes/__pycache__/main.cpython-314.pyc and b/backend/routes/__pycache__/main.cpython-314.pyc differ
diff --git a/backend/routes/__pycache__/utilities.cpython-314.pyc b/backend/routes/__pycache__/utilities.cpython-314.pyc
index fce965f..4445d99 100644
Binary files a/backend/routes/__pycache__/utilities.cpython-314.pyc and b/backend/routes/__pycache__/utilities.cpython-314.pyc differ
diff --git a/backend/routes/auth.py b/backend/routes/auth.py
index 68a07ad..5815e16 100644
--- a/backend/routes/auth.py
+++ b/backend/routes/auth.py
@@ -270,8 +270,15 @@ def register():
approval_token=approval_token
)
user.set_password(form.password.data)
- db.session.add(user)
- db.session.commit()
+
+ try:
+ db.session.add(user)
+ db.session.commit()
+ except Exception as e:
+ db.session.rollback()
+ current_app.logger.error("REGISTER: DB commit failed: %s", e)
+ flash("회원가입 처리 중 오류가 발생했습니다. (DB Error)", "danger")
+ return render_template("register.html", form=form)
# 텔레그램 알림 (인라인 버튼 포함)
message = (
diff --git a/backend/routes/main.py b/backend/routes/main.py
index 92cbb90..828ee77 100644
--- a/backend/routes/main.py
+++ b/backend/routes/main.py
@@ -207,13 +207,13 @@ def delete_file(filename: str):
if file_path.exists():
try:
file_path.unlink()
- flash(f"{filename} 삭제됨.")
+ flash(f"'{filename}' 파일이 삭제되었습니다.", "success")
logging.info(f"파일 삭제됨: {filename}")
except Exception as e:
logging.error(f"파일 삭제 오류: {e}")
flash("파일 삭제 중 오류가 발생했습니다.", "danger")
else:
- flash("파일이 존재하지 않습니다.")
+ flash("파일이 존재하지 않습니다.", "warning")
return redirect(url_for("main.index"))
diff --git a/backend/routes/utilities.py b/backend/routes/utilities.py
index 832c974..f0cad0f 100644
--- a/backend/routes/utilities.py
+++ b/backend/routes/utilities.py
@@ -301,68 +301,72 @@ def scan_network():
지정된 IP 범위(Start ~ End)에 대해 Ping 테스트를 수행하고
응답이 있는 IP 목록을 반환합니다.
"""
- import ipaddress
- import platform
- import concurrent.futures
-
- data = request.get_json()
- start_ip_str = data.get('start_ip')
- end_ip_str = data.get('end_ip')
-
- if not start_ip_str or not end_ip_str:
- return jsonify({"success": False, "error": "시작 IP와 종료 IP를 모두 입력해주세요."}), 400
-
try:
- start_ip = ipaddress.IPv4Address(start_ip_str)
- end_ip = ipaddress.IPv4Address(end_ip_str)
-
- if start_ip > end_ip:
- return jsonify({"success": False, "error": "시작 IP가 종료 IP보다 큽니다."}), 400
-
- # IP 개수 제한 (너무 많은 스캔 방지, 예: C클래스 2개 분량 512개)
- if int(end_ip) - int(start_ip) > 512:
- return jsonify({"success": False, "error": "스캔 범위가 너무 넓습니다. (최대 512개)"}), 400
+ import ipaddress
+ import platform
+ import concurrent.futures
- except ValueError:
- return jsonify({"success": False, "error": "유효하지 않은 IP 주소 형식입니다."}), 400
+ data = request.get_json(force=True, silent=True) or {}
+ start_ip_str = data.get('start_ip')
+ end_ip_str = data.get('end_ip')
+
+ if not start_ip_str or not end_ip_str:
+ return jsonify({"success": False, "error": "시작 IP와 종료 IP를 모두 입력해주세요."}), 400
- # Ping 함수 정의
- def ping_ip(ip_obj):
- ip = str(ip_obj)
- param = '-n' if platform.system().lower() == 'windows' else '-c'
- timeout_param = '-w' if platform.system().lower() == 'windows' else '-W'
- # Windows: -w 200 (ms), Linux: -W 1 (s)
- timeout_val = '200' if platform.system().lower() == 'windows' else '1'
-
- command = ['ping', param, '1', timeout_param, timeout_val, ip]
-
try:
- # shell=False로 보안 강화, stdout/stderr 무시
- res = subprocess.run(command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
- return ip if res.returncode == 0 else None
- except Exception:
- return None
+ start_ip = ipaddress.IPv4Address(start_ip_str)
+ end_ip = ipaddress.IPv4Address(end_ip_str)
+
+ if start_ip > end_ip:
+ return jsonify({"success": False, "error": "시작 IP가 종료 IP보다 큽니다."}), 400
+
+ # IP 개수 제한 (너무 많은 스캔 방지, 예: C클래스 2개 분량 512개)
+ if int(end_ip) - int(start_ip) > 512:
+ return jsonify({"success": False, "error": "스캔 범위가 너무 넓습니다. (최대 512개)"}), 400
- active_ips = []
-
- # IP 리스트 생성
- # ipaddress 모듈을 사용하여 범위 내 IP 생성
- target_ips = []
- temp_ip = start_ip
- while temp_ip <= end_ip:
- target_ips.append(temp_ip)
- temp_ip += 1
+ except ValueError:
+ return jsonify({"success": False, "error": "유효하지 않은 IP 주소 형식입니다."}), 400
- # 병렬 처리 (최대 50 쓰레드)
- with concurrent.futures.ThreadPoolExecutor(max_workers=50) as executor:
- results = executor.map(ping_ip, target_ips)
-
- # 결과 수집 (None 제외)
- active_ips = [ip for ip in results if ip is not None]
+ # Ping 함수 정의
+ def ping_ip(ip_obj):
+ ip = str(ip_obj)
+ param = '-n' if platform.system().lower() == 'windows' else '-c'
+ timeout_param = '-w' if platform.system().lower() == 'windows' else '-W'
+ # Windows: -w 200 (ms), Linux: -W 1 (s)
+ timeout_val = '200' if platform.system().lower() == 'windows' else '1'
+
+ command = ['ping', param, '1', timeout_param, timeout_val, ip]
+
+ try:
+ # shell=False로 보안 강화, stdout/stderr 무시
+ res = subprocess.run(command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
+ return ip if res.returncode == 0 else None
+ except Exception:
+ return None
- return jsonify({
- "success": True,
- "active_ips": active_ips,
- "count": len(active_ips),
- "message": f"스캔 완료: {len(active_ips)}개의 활성 IP 발견"
- })
\ No newline at end of file
+ active_ips = []
+
+ # IP 리스트 생성
+ target_ips = []
+ temp_ip = start_ip
+ while temp_ip <= end_ip:
+ target_ips.append(temp_ip)
+ temp_ip += 1
+
+ # 병렬 처리 (최대 50 쓰레드)
+ with concurrent.futures.ThreadPoolExecutor(max_workers=50) as executor:
+ results = executor.map(ping_ip, target_ips)
+
+ # 결과 수집 (None 제외)
+ active_ips = [ip for ip in results if ip is not None]
+
+ return jsonify({
+ "success": True,
+ "active_ips": active_ips,
+ "count": len(active_ips),
+ "message": f"스캔 완료: {len(active_ips)}개의 활성 IP 발견"
+ })
+
+ except Exception as e:
+ logging.error(f"Scan network fatal error: {e}")
+ return jsonify({"success": False, "error": f"서버 내부 오류: {str(e)}"}), 500
\ No newline at end of file
diff --git a/backend/static/js/index.js b/backend/static/js/index.js
index 38b1001..6c8e939 100644
--- a/backend/static/js/index.js
+++ b/backend/static/js/index.js
@@ -152,7 +152,7 @@ document.addEventListener('DOMContentLoaded', () => {
await postFormAndHandle(macForm.action);
location.reload();
} catch (err) {
- alert('MAC 이동 중 오류: ' + (err?.message || err));
+ alert('MAC 파일 이동 중 오류가 발생했습니다: ' + (err?.message || err));
btn.disabled = false;
btn.innerHTML = originalHtml;
}
@@ -175,7 +175,7 @@ document.addEventListener('DOMContentLoaded', () => {
await postFormAndHandle(guidForm.action);
location.reload();
} catch (err) {
- alert('GUID 이동 중 오류: ' + (err?.message || err));
+ alert('GUID 파일 이동 중 오류가 발생했습니다: ' + (err?.message || err));
btn.disabled = false;
btn.innerHTML = originalHtml;
}
@@ -200,7 +200,7 @@ document.addEventListener('DOMContentLoaded', () => {
const btnScan = document.getElementById('btnStartScan');
if (btnScan) {
btnScan.addEventListener('click', async () => {
- const startIp = '10.10.0.1';
+ const startIp = '10.10.0.2';
const endIp = '10.10.0.255';
const ipsTextarea = document.getElementById('ips');
const progressBar = document.getElementById('progressBar');
@@ -218,7 +218,7 @@ document.addEventListener('DOMContentLoaded', () => {
}
progressBar.style.width = '100%';
progressBar.classList.add('progress-bar-striped', 'progress-bar-animated');
- progressBar.textContent = '네트워크 스캔 중... (10.10.0.1 ~ 255)';
+ progressBar.textContent = 'IP 스캔 중...';
}
try {
@@ -231,6 +231,23 @@ document.addEventListener('DOMContentLoaded', () => {
body: JSON.stringify({ start_ip: startIp, end_ip: endIp })
});
+ // 1. 세션 만료로 인한 리다이렉트 감지
+ if (res.redirected) {
+ alert('세션이 만료되었습니다. 다시 로그인해주세요.');
+ window.location.reload();
+ return;
+ }
+
+ // 2. JSON 응답인지 확인
+ const contentType = res.headers.get("content-type");
+ if (!contentType || !contentType.includes("application/json")) {
+ const text = await res.text();
+ if (text.includes("CSRF")) {
+ throw new Error("보안 토큰(CSRF)이 만료되었습니다. 페이지를 새로고침해주세요.");
+ }
+ throw new Error(`서버 응답 오류 (HTTP ${res.status}): ${text.substring(0, 100)}...`);
+ }
+
const data = await res.json();
if (data.success) {
@@ -248,7 +265,7 @@ document.addEventListener('DOMContentLoaded', () => {
}
} catch (err) {
console.error(err);
- alert('오류 발생: ' + (err.message || err));
+ alert('오류가 발생했습니다: ' + (err.message || err));
} finally {
// 상태 복구
btnScan.disabled = false;
@@ -264,4 +281,18 @@ document.addEventListener('DOMContentLoaded', () => {
});
}
+ // ─────────────────────────────────────────────────────────────
+ // IP 입력 지우기 버튼
+ // ─────────────────────────────────────────────────────────────
+ const btnClear = document.getElementById('btnClearIps');
+ if (btnClear) {
+ btnClear.addEventListener('click', () => {
+ const ipsTextarea = document.getElementById('ips');
+ if (ipsTextarea) {
+ ipsTextarea.value = '';
+ ipsTextarea.dispatchEvent(new Event('input')); // 로컬 스토리지 업데이트 및 카운트 갱신 트리거
+ }
+ });
+ }
+
});
diff --git a/backend/static/js/jobs.js b/backend/static/js/jobs.js
index a5b02fe..14e399b 100644
--- a/backend/static/js/jobs.js
+++ b/backend/static/js/jobs.js
@@ -401,7 +401,7 @@ document.addEventListener('DOMContentLoaded', async () => {
if (monitoringOn) await fetchJobs(false);
}
} catch (e) {
- alert('IP 목록 불러오기 실패: ' + e.message);
+ alert('IP 목록을 불러오는 중 오류가 발생했습니다: ' + e.message);
}
});
$btnApply.addEventListener('click', () => {
diff --git a/backend/templates/index.html b/backend/templates/index.html
index 591c412..a0cf39b 100644
--- a/backend/templates/index.html
+++ b/backend/templates/index.html
@@ -70,9 +70,13 @@
0
-
@@ -220,7 +224,8 @@
+ name="backup_prefix" placeholder="ex)PO-20251117-0015_20251223_판교_R6615(TY1A)"
+ style="font-size: 0.75rem; padding: 0.2rem 0.5rem;">
@@ -543,8 +548,8 @@
});
-
+
-
+
{% endblock %}
\ No newline at end of file
diff --git a/config.py b/config.py
index 6e00d47..7d2d3f9 100644
--- a/config.py
+++ b/config.py
@@ -47,6 +47,15 @@ class Config:
# ── DB (환경변수 DATABASE_URL 있으면 그 값을 우선 사용)
sqlite_path = (INSTANCE_DIR / "site.db").as_posix()
SQLALCHEMY_DATABASE_URI = os.environ.get("DATABASE_URL", f"sqlite:///{sqlite_path}")
+
+ # DB 연결 안정성 옵션 (SQLite 락/쓰레드 문제 완화)
+ SQLALCHEMY_ENGINE_OPTIONS = {
+ "pool_pre_ping": True,
+ "pool_recycle": 280,
+ }
+ if SQLALCHEMY_DATABASE_URI.startswith("sqlite"):
+ SQLALCHEMY_ENGINE_OPTIONS["connect_args"] = {"check_same_thread": False}
+
SQLALCHEMY_TRACK_MODIFICATIONS = False
# ── Telegram (미설정 시 기능 비활성처럼 동작)
@@ -78,6 +87,7 @@ class Config:
# ── 세션
PERMANENT_SESSION_LIFETIME = timedelta(minutes=int(os.getenv("SESSION_MINUTES", 30)))
+ SESSION_PERMANENT = True # 브라우저 닫아도 세션 유지 (타임아웃까지)
# ── SocketIO
# threading / eventlet / gevent 중 선택. 기본은 threading (Windows 안정)
diff --git a/data/logs/app.log b/data/logs/app.log
index cf5fc1b..f226be3 100644
--- a/data/logs/app.log
+++ b/data/logs/app.log
@@ -162,3 +162,7462 @@
2025-12-19 16:17:34,486 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
2025-12-19 16:17:53,229 [INFO] root: [AJAX] 작업 시작: 1766128673.2281537, script: TYPE8A-MAC_info.sh
2025-12-19 16:17:53,235 [ERROR] root: 10.10.0.2 처리 중 오류 발생: name 'shutil' is not defined
+2025-12-19 16:31:38,065 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
+2025-12-19 16:31:38,083 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
+2025-12-19 16:31:38,100 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
+2025-12-19 16:31:38,112 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
+2025-12-19 16:31:38,112 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
+2025-12-19 17:10:07,541 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:10:13,127 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:10:19,763 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:10:27,958 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:10:35,510 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:10:47,577 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:10:58,100 [INFO] telegram_bot_service: Received callback: approve_aH9ZxP5WKJKGLBGLcRJkOEtR4KtxtRkvxwF8UT3qQZI
+2025-12-19 17:11:05,052 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:11:22,597 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:11:46,294 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:12:19,339 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:12:57,878 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:13:35,788 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:14:13,574 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:14:51,281 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:15:24,827 [INFO] telegram_bot_service: Received callback: approve_Q2yAb3A0zLnTf_t9BikQ0yPbvk0Jf4yQE0uLtELo1L0
+2025-12-19 17:15:29,057 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:16:06,782 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:16:44,594 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:17:22,410 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:00,165 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:06,293 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:12,373 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:19,728 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:29,024 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:38,699 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:18:53,403 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:19:51,709 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:19:57,186 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:20:03,674 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:20:11,662 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:20:18,883 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:20:30,448 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:20:47,073 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:21:03,396 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:21:25,415 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:21:55,978 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:22:30,902 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:23:05,830 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:23:40,764 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:24:15,679 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:24:50,610 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:25:25,536 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:26:00,464 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:26:35,397 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:27:10,317 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:27:45,249 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:28:20,184 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:28:55,116 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:29:30,055 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:30:05,004 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:30:39,933 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:31:14,852 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:31:49,782 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:32:24,699 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:32:59,619 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:33:34,547 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:34:09,463 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:34:44,383 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:35:19,938 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:35:54,903 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:36:29,874 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:37:04,860 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:37:39,830 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:38:14,822 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:38:49,817 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:39:24,810 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:39:59,778 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:40:34,748 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:41:09,731 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:41:44,697 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:42:19,679 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:42:54,669 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:43:29,625 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:44:04,596 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:44:39,580 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:45:14,568 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:45:49,528 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:46:24,520 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:46:59,494 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:47:34,466 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:48:09,447 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:48:44,421 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:49:19,376 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:49:55,479 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:50:30,405 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:51:05,327 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:51:40,251 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:52:15,191 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:52:50,126 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:53:25,072 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:54:00,011 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:54:34,937 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:55:09,870 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:55:44,797 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:56:19,744 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:56:54,688 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:57:29,611 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:58:04,550 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:58:39,480 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:59:14,410 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 17:59:49,347 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:00:24,281 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:00:59,223 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:01:34,166 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:02:09,096 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:02:44,027 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:03:18,953 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:03:53,886 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:04:28,837 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:05:03,767 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:05:38,723 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:06:10,261 [INFO] telegram_bot_service: Received callback: approve_Ur6e_GGm3Llj24HlQa16EfQTq3VHD6B0grKsia-dWKo
+2025-12-19 18:06:13,874 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:06:19,845 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:06:27,071 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:06:33,184 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:06:42,610 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:06:56,856 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:07:17,466 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:07:39,615 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:08:10,341 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:08:45,415 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:09:20,584 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:09:55,674 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:10:30,942 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:11:06,037 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:11:41,104 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:12:16,154 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:12:51,267 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:13:26,396 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:14:01,467 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:14:36,556 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:01,873 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:07,357 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:13,843 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:21,831 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:29,074 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:40,706 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:16:57,369 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:17:13,698 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:17:35,704 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 18:20:08,243 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
+2025-12-19 18:20:08,265 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
+2025-12-19 18:20:08,282 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
+2025-12-19 18:20:08,293 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
+2025-12-19 18:20:08,293 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
+2025-12-19 18:20:08,295 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
+2025-12-19 18:20:14,470 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 19:17:20,835 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
+2025-12-19 19:17:20,855 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
+2025-12-19 19:17:20,873 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
+2025-12-19 19:17:20,883 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
+2025-12-19 19:17:20,884 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
+2025-12-19 19:17:20,885 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
+2025-12-19 19:17:27,096 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 19:17:33,085 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
+2025-12-19 19:17:33,965 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
+2025-12-19 19:17:34,003 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
+2025-12-19 19:17:34,005 [INFO] app: LOGIN: SUCCESS → redirect
+2025-12-19 19:17:40,314 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
+Traceback (most recent call last):
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
+ await do_action()
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
+ action_cb_task.result()
+ ~~~~~~~~~~~~~~~~~~~~~^^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
+ updates = await self.bot.get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<3 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
+ updates = await super().get_updates(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<9 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
+ await self._post(
+ ^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ ),
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
+ return await self._do_post(
+ ^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
+ return await super()._do_post(
+ ^^^^^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
+ result = await request.post(
+ ^^^^^^^^^^^^^^^^^^^
+ ...<6 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
+ result = await self._request_wrapper(
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ ...<7 lines>...
+ )
+ ^
+ File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
+ raise exception
+telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
diff --git a/telegram_bot_service.py b/telegram_bot_service.py
index e5211b4..8d58fa1 100644
--- a/telegram_bot_service.py
+++ b/telegram_bot_service.py
@@ -59,7 +59,7 @@ async def handle_approval_callback(update: Update, context: ContextTypes.DEFAULT
with flask_app.app_context():
# 토큰으로 사용자 찾기
user = User.query.filter_by(approval_token=token).first()
-
+
if not user:
await query.edit_message_text(
text="❌ 유효하지 않은 승인 요청입니다.\n(이미 처리되었거나 만료된 요청)"
@@ -168,6 +168,6 @@ def run_polling(flask_app: Flask) -> None:
try:
# v20 스타일: run_polling 은 동기 함수이고, 내부에서 이벤트 루프를 직접 관리함
- application.run_polling(drop_pending_updates=True)
+ application.run_polling(drop_pending_updates=True, stop_signals=[])
except Exception as e:
logger.exception("Error in bot polling: %s", e)
\ No newline at end of file