From b37c43ab86fd2057af98ea97591876d9f43ffe55 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 19 Dec 2025 19:18:16 +0900 Subject: [PATCH] Update 2025-12-19 19:18:16 --- __pycache__/config.cpython-314.pyc | Bin 4932 -> 5205 bytes .../telegram_bot_service.cpython-314.pyc | Bin 7980 -> 7998 bytes app.py | 32 +- .../models/__pycache__/user.cpython-314.pyc | Bin 6925 -> 7548 bytes backend/models/user.py | 14 +- backend/routes/__init__.py | 4 +- .../__pycache__/__init__.cpython-314.pyc | Bin 1751 -> 1827 bytes .../routes/__pycache__/auth.cpython-314.pyc | Bin 19437 -> 19914 bytes .../routes/__pycache__/main.cpython-314.pyc | Bin 15178 -> 15231 bytes .../__pycache__/utilities.cpython-314.pyc | Bin 17967 -> 18439 bytes backend/routes/auth.py | 11 +- backend/routes/main.py | 4 +- backend/routes/utilities.py | 120 +- backend/static/js/index.js | 41 +- backend/static/js/jobs.js | 2 +- backend/templates/index.html | 17 +- config.py | 10 + data/logs/app.log | 7459 +++++++++++++++++ telegram_bot_service.py | 4 +- 19 files changed, 7629 insertions(+), 89 deletions(-) diff --git a/__pycache__/config.cpython-314.pyc b/__pycache__/config.cpython-314.pyc index f16268cb48057ab505165162f58ca3e1c6349843..25fd12998d985984cb79d45c0dba91b65b9a9ea8 100644 GIT binary patch delta 826 zcmZXR&1(}u7{+&+WV5N+P1ZCqX_L0wG#{I7n|_HsXtCI>EwpKz6rq)L3CYrircK?9 zh~D(%**RFS;0FletwjF=5y49;NW*$i|AUGsh#s8T8VI_u&;H(Lp5c9W=5_o-QcwiG zlOfOD4z(Qi9SG0t;9mWueH94M4S6V}JCK<7W@Gq^-6wk{0nIW@;^f1WIED!`&)x$z+at;BS@SebsQl=A&a^R zbz9U!sK=r(p|C{}LJ=%+iY)+pEvJt-eHQf->bFQDBvJAVz|bf_(Y#Ay@{a60zT@)S z2H-FrbA^CaMWXA`*37McMe+80WN_W~Un0?-05M!}`S@gBCSBS(CF1M7|L%l|bAL}1 zrJx%rt*H`8D7Ug`h@9v!c}HLhrJ;gG;Sd^wN|cdD>fc=~STgzDYPF*68oIVy-q~0& z-BxYr#aqRSUJjBLCR@8+DI?t!i<^3JORE*Obq#GAdZ9FDx{KAF9leOOg0WGo&;W8|KV1b*ZG zyd>~lTkc>>sGFx;^F z@jGuCtl?kYFqpzYac&yYDQ2l$AYwYUw@PKh2vK94${Lkxbcs8^T`k?H=+j1tl=Nb1 TPwV^QL*SVOK>Ef|wc>vO!BNKR delta 604 zcmZXPPfG$p7{+(p)cmu%?y8yjC)ZtFbu)v6B1{aTOP81q5wu272Pp}*>C!EtYeCbk zOC7ot9l}0BUm*xDeTYt->YXh?b6_5xdFJ=R^S%{c^P(vVehyA@qtrT+pT+wTRO`Hq zY$6wt>7~aMf>@}!7{PHwVTmmEC1ERqCHm|w@=+^78?G$<_WImokjgA|$G|C$8wVG5 z$T*N8{+FD9H0t~(z>R@3`3R0VNeYs2$ECr=nd2v6_S9=i8LZ48qFO$cv)pUTbjKG> zC2+piw2J;3YXd~GsSOeO0Fi3)Lqx8hP}9xY5RtbG=+W0jn{1~4Q#do%YgOoVHdLJL zaioX?qy*Q*8kxd6DdQZO#=6E8jn0zagU|}S4t${sy$C+gZ6V{yz>;>Bo(mr#o!K0d zJQITwQFqxT`Xrv9GA&3Av`t&m6?*T?hVBsU$`ypEUrC}_YA7r9RW`K9WFDmJZtw55 qY&*_^G84>Xoqdhg+K0Qx2YYpU3!ZGDqub7-a)X2gq<(TB4*UZc9Cl*> diff --git a/__pycache__/telegram_bot_service.cpython-314.pyc b/__pycache__/telegram_bot_service.cpython-314.pyc index 0997c23c4598590524ecadf1e2e70c95e7b10179..1373ca91d8e4e7b6232919683de9b5135e29a159 100644 GIT binary patch delta 177 zcmZ2ux6h7On~#@^0SI15xMo&wZ5ApM=+1E{|UL{tNDan0s58Ba#G3mo#-IIJdbm$g)r zWIe>{Xyqo!dW==bO^4x_B)6L;=P?~_cM0ZW=3?%`%*TaU-6bZA$?cW_nX;0hNEBqE XFp#*#VUwGmQks)$R}?w 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 cc188e5491258a7f346a439187e008f47f6c5798..fde38b96ee37cbcd877bedebec715d8d538dc51b 100644 GIT binary patch delta 993 zcma)*Ur19?9LLYO*SoNLTe`Em&AG8nC7WrA+MF9|E{vQhHWCUZ;-6^)wRuK_8YofF zf?9GO>anNjabbk7^R<^d6b53@LvOt-92nI@zjISF6zuo#JKyuW-}AfY+|Rkse7^$5 z3&u025kw02#J^bH89$e|mP)p72-2(J0w1)-E`3T{z&4J#c`qawMTAOsCNP^a``9g0 zGp=MQ({Pm=MU{P*0Zm*%$bk|<)VN<8EMrTu>J)DZ3ThTw_nNv;)O6r5vlSb`R+g1r zS8+n<5+b-7MRXO%aTFAtD2}})v9yuv2xjS z46HKl;xTB_VW}Ke@BhH^z@i1`Kd|lrx!KW~*a0t@xz&n8yyzq>I!cSTqEkE_=GCV* z8Wy3LoM+3b>lkR6avfSrp0wvk`vwVWO7JMO_BGEM(d-?YO6LjC-ZXTZQPwPnJYv?> z7IKK|4hb||%o_N-AJtXE9lpou)khW?dw|)FhzzEJ0IFaCRpd&q>565nX`Eu0ZC~+y xR$pP4_+e73eHAqrFS3N)i667)_AzG+W80JFv_Iv4al454Y&Rm7V6*O;z9rb delta 487 zcmexk)oaG5&Bx2d00dQU)iS$9H}X9YG+|*i{m1|$X2gB~Q5W>>!Q3Kapt58}kYXrc z0n*G244j`2F-)E(YBo7S$Y^qpP>i4^bCD}h%1@KANEt|LvQ6G9tRtYw1m@jhEG%XM zimFW(7tv#Mo9rf{p?HU1xWB5i>N>yjMSkTKiWm5mFZ1hM=Qp~@Z*-a8;81y~Hsnk+BX&saZs zz0_;QvdOchrC6(gy6ZRZl2&14teSjZMwYQ<@?V)G*=R;aiw>iHi%yFPkzW` 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 bb1da0003545e02e62a642d98df58285fd43734c..3168fc6985fbea1ac682343cc376aeaa82bc8f18 100644 GIT binary patch delta 636 zcmY+9zi-n(6vywJbLu#8e*bjSq^MO|iy>WrA|V!pWJ?H;2d1c2;<%NmQ%C1Bzm~us zz!2R465UuBkvg(5Gk{bn$iiajKY);6Lc({UNWI~E-}mmld!M&Z-sY9dc|``vS*W+& z$y{l{kMk{iPcM>U7wkbZW0dqVDRVCy6}?KT+-HrNUMF?#b4EjNk|y_x(b83-a-TO= z^)_jDfmt?-4PcfUz$zToaa27Yqt?Csm^-shTjTB({oJKmC-_V3z*kx{kKQ)CSNH zy@T%6pQZa8LW7YUV$YglXWxB7-=Ov^Dr4us4TyuSkrz5s>>d%!STGxo6()Hm1tvu% zr9?CVSCcD}0^dG#i0cQ8uGhmYmM#4M6Z;`?0=%ANSz9nmp9jV*LlnVBlOT81spTV zxnn%Et$!mKbdHV%7>D0;&cXS(G^yJ<=~skWrI;#o>A-+kkf_a2P=*euA_|VF3@%1@7f`4E z4bd$O-3osJJ3BiP!ooWnUjr-mo`I9@ch9}{>7Ms4Tb~%)ZLvD&k=?kS9L!mdyr1tx z5BuqqYa5 zjt6NwC31cK^}-|h5|2+3A!9zC$s`@~Y$jvz?k(9Oq^CYuH|ta@RRHW?_f(@IwvQX= zh~o(MNlAS;W+jzX^`^2S{+%Ays4# zoiDWe+Wkm3)TMo=wyNtsIrKNwH+y=X*PbM4JbszPuZ%)YpJtDR5y_j$lux3+kHoR( zyctd8B+X97;_P|E(J`-!=*7Q(&^LFc{IvXz=EjAuAmPoWuygA)o6gesw#A3)b9Jy? cz-|G40fPee3eell0<2ld! zzR&x?3-|7xgFjw?`cA#B9uPan1QS>M>-sYfDsR;Ru!6(w9A0s1@HO8DFrJaRZZgn{ zCwiV^8$e~*YLsfk^K(}nLd!7Iw_67j^Km>#j<3DUhIEr^HmLUT;JPyDK z1^{_3Qb)W203>yk#LD)#O3=I5GM6+FO-CgjYrfx16MmF7>kL)G|9d8&sFLcV)@mqH zPman()Y$AgqU7(dv12jf@Sq7#bvKxK5bdo>RUmeZwwG8O>fx|kYs0s?IsBW}WYvnS zi!4ix1GVM?5_EXQWqv>eg34VHEHO49=q0wFZLhoum;gT31`^QOnz`uG!i8nK5F8#o zA_fI79~k0iQuFhPMSgZVk&MT@yd%9dKql>;KU2K$+U-j##dlujiyyBRE`G=t*Iws~ zt80b#R!N*MTzaec(%ZXlo-Dp{xp4Yq;q+P;e}ME0%5q9}ZmVL`3v+QflvzJ0L4KL> z^2>W`b7xcXJRhgZwBM0-9>7nJSa8(+z9CFzZ>!~0GI?xz=C~~2f83L1t(+lY`BR!x zETu_Zgit)?u@3w|69P>rXA|*cO#X@Rw3Yy0Guc4}YB@faNH3D=EOGBposP|X;TeV< zB}JX4Kacch$4-r%4V? zRHveR^q;X1=umExNMGiKzz(arLUmu__=u>?6S|16j(h|+GV`NtP)iRhQ>~oG=f`aI lw+W>`i?j)EjJ?_zfY5!11Zmg&nUiSB>nYC`12XWY5FCBnNm{h2 zO(cX0Cx|Fqw~FFr3;V$e3TzRD5Ka-eiCP2`E?d;SGd{eF?|kRG=bn4cJ$LUu{(Tp_ zI$cf~vDNQBySS8i;=0{MYYS~tlPFV5E2wVtx-NE=p zg!DTIg^`AoQTS8u#ba<744(0z)D%Kj2|`rUY|I-)$gro!tpxL;8j1;J&yX~!{dhyK zDJ7GX6i?PUVa1==X*?$ymFbYBXqD^*!jt28)p97o! z`VEX{U?tv&+h8O98uY=bluS*QhCX9Zs94QsX~CY$=JT1$S$d0W@}lD@E<$z|z# z9;tFwEU9#l@jRb3{2dHBJ~DE|m2F}+4V}X+-z0fMUXwRmYp%^J`%?JW|030WlIr%Q zP*F11hi9-zdF$qE@`g<+*!0XYyW2b%dxQNim`frP`-vh(@?W{J+&j)cKC_sFgiIWeq}TV_a-0V zU2|fp1xI-|l%Jw}i?(v$b<#El1u2nR(N~wUBlH(@`QOY}!-Mnd?j#;K5)kPt62^)t N7@k&f2G*w&{{gGSvz-6{ diff --git a/backend/routes/__pycache__/main.cpython-314.pyc b/backend/routes/__pycache__/main.cpython-314.pyc index 1bab7a9bcdf3ba6f67c72db2a6551d2fa657be1c..1f84c4cbfa57afd1a2763dbeb24408b7f9e81794 100644 GIT binary patch delta 433 zcmX?A_P>l*n~#@^0SIpYbIB~-$U9$~X&&R`Mh=t7-_7_Zf7I4sw3#fWW55^05XQj6 z5X5N29K>Y8G&w{^Q<)hgV#H*^2-42LAkW~-6T=N*GcW{k1aSh@&C`)(|yE|TYFVVZjUR;`-oLXF5Dg;#jwr6sp?nKU8 z?B$6?d6{|XlRxR!aGe55oCf0Jt&=PC91R^OWK4*^gzm9aA8$;o^sN{lx*8=9yyGv1yYX>Q1PcXGFR g0^_C4Z_Gm(xj}9#x(OogPWG{sWqh+a%klvu07q7SSO5S3 delta 351 zcmexgcB+h5n~#@^0SMG;oip7x^3K<0n!z}^k;7!NjyeD2kJ=iHR+FW447kD=co>2h zjF?OqCr9XL+B1UqARb671A{z+FLw+#gw4PZ#D)-$5rv7yh{ISx?2`}acrr3g=Fye5 zWDa66VS>oWGsrRou@*4dGx>Nz=uE~;25V+nhD=6Hj#7~M3U8X$zF9Em^@J6AlbdyC zOjgmW;W`c!KMlmi>n5+#bL5Vg;58%rf{@k~9_`7$^<r71!&MSfJImX;z4h#=xZEuAykxdBCJUn-fX4i?5!VHpqn+CcA)(Zn8<-F7}-PhGlD$=Y8_# zeV*_A-tRqMeSlqxVni{aQULU;)b9^`Q~ovazC*u70zfM{2n^r^@L-LgZ#iPUBzM!X z)#?$Uzt|xXR7i&vEECWv2EYi+U5tDK{r(K=nS?7^?{KQNPH99-xodOITK701JRhu?YmQ z!o2?T$V0I(F}M)_cs@GHG`gAjTh|vxIi|8J*IOu>m7eSkwRgktyNQbDeJ+JI_UPYuRO67PwXAv%UgD(Ev}@+#anhy$y1ibkv|ZCnJH$~a3KvSJjujn&&ZclDvB^ZJ(d)*ut?h@9ySbu%Yh zBdtA5M<~=Aaxwi{blHWAqw}{eGV|}=ng4c>S%`f$|9Q;C1QyXS3e~gnKwqohAL3IW4? zT4Na)L#$Akc`^E4(9E+$9VYc*k7c^YGWxM><5NP) z;*qQbm-k{Bni)vbB}uv@;p1r+dmy99Piu;jnxce@*OasMPe?jNGIMl(T%NE`7QjkB zG264MFXjMB9WB4|_Gn97_sQ#z$f86`iY#5D2tjk0rz7z6IY^&_)VZt} zP&HmYAM<1Lb1oo9e`|8)mq*0#>*oeK;$Z>J-m_ zlu~AaRIXfFY{USiM_Y!*w`RVb(9p%J1F$;?)xn2&5Un37c=3F<&;{!7uis=qyJu-J z7vP#jAVLp3CnG;nT~-Z1UD@Q$Nek4Lr(}*fQX7-U?TG?tZ~A#3bRYhye#QxHUP!;n zlSkmuag5x#(y=R#3~6nt5N;CsV50WFk(c4xg3{II7Wg)0eU*ILsY3jLRC$0B zKcMUfl;RmFhWLz9ijYh0`wko9uGZ-lU!a!II)m_;+qdfcn4uBFeAqKF5K#iyev|x@ I2x(Bs-^nf2sQ>@~ delta 1161 zcmY+CT}&fY6vywhGwn>LouM;@PHEXTfV4y`lu~HfUEJlP8!9GdBu3PLXh{R>N^J!a zqG=Olt?rr>XA|0}p+*zxi>|H@Joo@+*Q|*Tw>vd6VR;~%P4>y8E|?|82k$Is@IL&` zy(j0Kd(Z!#5AxWzS25;E#$p0!U3f4w8xDQPT<#Oz)B`ZhWWgj5u~Cpbve-N$ebeV- zdbD7)lDZdk&(YGhpJ#PF*s)LluMg8pJ>d|Ki-c$pjh+8Rh@|vRc>35+{m)+uM?$9X zH2~rq050%~<)|hA;!zd)WOPv10-Ru+31Xr}nvA@MG19%r3WbZTST|0JRw>zEujfP_ zSsQK!qD?CGcOGABK3Pb**MCmeUN3E(&fXBuKz$~LdP#4iyAQKq*HV{nxbkvNrwX2R zw#dptyCQT}gicuqT%V{41FQJfaE?$tz76&ZR`vuGPhZ8;Cwn5B6ID;Nh~FO0S@zuC z^-M7%ySo&3Z^hj!yThBKRrkp1%)!|w{RXkM=R2?1pZfNek-imOz%L)eoql6vaUehBh z{eI4mjZ4n+V{ALSL(L|q=apF5YyX<`mj_hjz+zQ+8P8?Q7xHa3Lo1 z-t3ratzQ#Xg@RAEwq#=uX#4u|F56I`N};kB24|stPG&E{OG(HkA(^b=x4XR;gPf8Cr=mR z%~mezCT{77Xg7Y#Y|wbt#YSEFpPiUSHy!Pyq>YgupU`IFYmll(CdDJ{kY_H<#~0q1 j8AxrQBN`NtUbvBq#xchTh8g$uKv$65j}!j^OE+7% 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